aboutsummaryrefslogtreecommitdiff
path: root/b3sum/src
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2020-05-14 11:29:28 -0400
committerJack O'Connor <[email protected]>2020-05-14 11:29:28 -0400
commit86d5a13731a398d4785f7a0e8b57898559735910 (patch)
tree3e9066fe4d9aa956480aaf1e60724cae37f2b79e /b3sum/src
parent1d03c7d3faa90061e94f17cfe7bda006612c0c74 (diff)
clarify that --no-mmap disables threading
Diffstat (limited to 'b3sum/src')
-rw-r--r--b3sum/src/main.rs9
1 files changed, 4 insertions, 5 deletions
diff --git a/b3sum/src/main.rs b/b3sum/src/main.rs
index 9195c09..29e20fa 100644
--- a/b3sum/src/main.rs
+++ b/b3sum/src/main.rs
@@ -76,11 +76,10 @@ impl Args {
context string. Cannot be used with --keyed.",
),
)
- .arg(
- Arg::with_name(NO_MMAP_ARG)
- .long(NO_MMAP_ARG)
- .help("Disables memory mapping"),
- )
+ .arg(Arg::with_name(NO_MMAP_ARG).long(NO_MMAP_ARG).help(
+ "Disables memory mapping. Currently this also disables\n\
+ multithreading.",
+ ))
.arg(
Arg::with_name(NO_NAMES_ARG)
.long(NO_NAMES_ARG)