- Timestamp:
- 07/07/14 13:36:33 (7 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- faf16af
- Parents:
- 457bf45
- Location:
- tools
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/traceanon/traceanon.1
rd6dc0f6 r17f954f 86 86 .BI \-\^\-compress-type=method 87 87 compress the output trace using the compression algorithm "method". Possible 88 algorithms are "gzip", "bzip2", "lzo" and "none". Default is "none".88 algorithms are "gzip", "bzip2", "lzo", "xz" and "none". Default is "none". 89 89 90 90 .SH EXAMPLES -
tools/traceanon/traceanon.c
rf5b5cca r17f954f 219 219 } else if (strncmp(compress_type_str, "lzo", 3) == 0) { 220 220 compress_type = TRACE_OPTION_COMPRESSTYPE_LZO; 221 } else if (strncmp(compress_type_str, "xz", 2) == 0) { 222 compress_type = TRACE_OPTION_COMPRESSTYPE_LZMA; 221 223 } else if (strncmp(compress_type_str, "no", 2) == 0) { 222 224 compress_type = TRACE_OPTION_COMPRESSTYPE_NONE; -
tools/tracemerge/tracemerge.1
rd6dc0f6 r17f954f 53 53 .BI \-\^\-compress-type method 54 54 Describes the compression algorithm to be used when writing the output trace. 55 Possible methods are "gzip", "bzip2", "lzo" and "none". Defaults to "none". 55 Possible methods are "gzip", "bzip2", "lzo", "xz" and "none". Defaults to 56 "none". 56 57 57 58 -
tools/tracemerge/tracemerge.c
rc0ccccd r17f954f 120 120 } else if (strncmp(compress_type_str, "lzo", 3) == 0) { 121 121 compress_type = TRACE_OPTION_COMPRESSTYPE_LZO; 122 } else if (strncmp(compress_type_str, "xz", 2) == 0) { 123 compress_type = TRACE_OPTION_COMPRESSTYPE_LZMA; 122 124 } else if (strncmp(compress_type_str, "no", 2) == 0) { 123 125 compress_type = TRACE_OPTION_COMPRESSTYPE_NONE; -
tools/tracesplit/tracesplit.1
rd6dc0f6 r17f954f 61 61 \fB-Z\fR compression-method 62 62 Compress the data using the specified compression algorithm. Accepted methods 63 are "gzip", "bzip2", "lzo" or "none". Default value is none unless a63 are "gzip", "bzip2", "lzo", "xz" or "none". Default value is none unless a 64 64 compression level is specified, in which case gzip will be used. 65 65 -
tools/tracesplit/tracesplit.c
r755855a r17f954f 316 316 } else if (strncmp(compress_type_str, "lzo", 3) == 0) { 317 317 compress_type = TRACE_OPTION_COMPRESSTYPE_LZO; 318 } else if (strncmp(compress_type_str, "xz", 2) == 0) { 319 compress_type = TRACE_OPTION_COMPRESSTYPE_LZMA; 318 320 } else if (strncmp(compress_type_str, "no", 2) == 0) { 319 321 compress_type = TRACE_OPTION_COMPRESSTYPE_NONE;
Note: See TracChangeset
for help on using the changeset viewer.