From: Przemyslaw Skibinski Date: Wed, 8 Feb 2017 12:49:06 +0000 (+0100) Subject: added description of "--priority=rt" X-Git-Tag: v1.1.4~1^2~65^2~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40580ff669a4e5bb4d681973fb61281b2ac2d140;p=thirdparty%2Fzstd.git added description of "--priority=rt" --- diff --git a/programs/zstd.1 b/programs/zstd.1 index 384f69e3a..684fb868a 100644 --- a/programs/zstd.1 +++ b/programs/zstd.1 @@ -289,7 +289,8 @@ and weight typically 100x the target dictionary size (for example, 10 MB for a 1 .TP .B \-B# cut file into independent blocks of size # (default: no block) - +.B \--priority=rt + set process priority to real-time .SH ADVANCED COMPRESSION OPTIONS .TP diff --git a/programs/zstdcli.c b/programs/zstdcli.c index 604e4c5f2..a7dbda313 100644 --- a/programs/zstdcli.c +++ b/programs/zstdcli.c @@ -148,6 +148,7 @@ static int usage_advanced(const char* programName) DISPLAY( " -e# : test all compression levels from -bX to # (default: 1)\n"); DISPLAY( " -i# : minimum evaluation time in seconds (default : 3s)\n"); DISPLAY( " -B# : cut file into independent blocks of size # (default: no block)\n"); + DISPLAY( "--priority=rt : set process priority to real-time\n"); #endif return 0; }