Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-12-04 07:12:39 +0300
committerChristopher Faylor <me@cgf.cx>2001-12-04 07:12:39 +0300
commit48f939e29fe8990a4905d28976183757f2ff06f6 (patch)
tree00b58364b7cc81224ed94fda1d91b963e293cc4d /winsup/utils/strace.cc
parent7543995b74deea91ce4d3f793f240c2d0c6c1b1f (diff)
* cygcheck.cc (usage): Add -c description.
* cygpath.cc (usage): Alphabetize options. * strace.cc (usage): Ditto.
Diffstat (limited to 'winsup/utils/strace.cc')
-rw-r--r--winsup/utils/strace.cc27
1 files changed, 13 insertions, 14 deletions
diff --git a/winsup/utils/strace.cc b/winsup/utils/strace.cc
index c88b40673..67e0d74c2 100644
--- a/winsup/utils/strace.cc
+++ b/winsup/utils/strace.cc
@@ -728,8 +728,19 @@ usage ()
{
fprintf (stderr, "\
Usage: strace [OPTIONS] <command-line>\n\
- -b, --buffer-size=SIZE Set size of output file buffer.\n\
- -m, --mask=MASK Set message filter mask.\n\
+ -b, --buffer-size=SIZE set size of output file buffer\n\
+ -d, --no-delta don't display the delta-t microsecond timestamp\n\
+ -f, --trace-children also trace forked child processes\n\
+ -h, --help display this help info\n\
+ -m, --mask=MASK set message filter mask\n\
+ -o, --output=FILENAME set output file to FILENAME\n\
+ -n, --crack-error-numbers output descriptive text instead of error\n\
+ numbers for Windows errors\n\
+ -S, --flush-period=PERIOD flush buffered strace output every PERIOD secs\n\
+ -t, --timestamp use an absolute hh:mm:ss timestamp insted of the\n\
+ default microsecond timestamp. Implies -d\n\
+ -v, --version display version info\n\
+ -w, --new-window spawn program under test in a new window\n\
\n\
MASK can be any combination of the following mnemonics and/or hex values\n\
(0x is optional). Combine masks with '+' or ',' like so:\n\
@@ -756,18 +767,6 @@ Usage: strace [OPTIONS] <command-line>\n\
nomutex 0x10000 (_STRACE_NOMUTEX) Don't use mutex for synchronization.\n\
malloc 0x20000 (_STRACE_MALLOC) Trace malloc calls.\n\
thread 0x40000 (_STRACE_THREAD) Thread-locking calls.\n\
-\n\
- -o, --output=FILENAME Set output file to FILENAME.\n\
- -f, --trace-children Also trace forked child processes.\n\
- -n, --crack-error-numbers Output descriptive text instead of error\n\
- numbers for Windows errors.\n\
- -d, --no-delta Don't display the delta-t microsecond timestamp.\n\
- -t, --timestamp Use an absolute hh:mm:ss timestamp insted of the\n\
- default microsecond timestamp. Implies -d.\n\
- -w, --new-window Spawn program under test in a new window.\n\
- -S, --flush-period=PERIOD Flush buffered strace output every PERIOD secs.\n\
- -v, --version Display version info.\n\
- -h, --help Display this help info.\n\
");
}