aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xentrace
diff options
context:
space:
mode:
authorOlaf Hering <olaf@aepfle.de>2011-06-17 14:09:32 +0200
committerOlaf Hering <olaf@aepfle.de>2011-06-17 14:09:32 +0200
commit8c779c0f475d33fd26af223ad23f9a027e63f034 (patch)
treeeea2c2ccd0bebb068d5995651098349f1895c081 /tools/xentrace
parent707c0784550e660538e9bc30867a5d32ad1fd669 (diff)
downloadxen-8c779c0f475d33fd26af223ad23f9a027e63f034.tar.gz
xen-8c779c0f475d33fd26af223ad23f9a027e63f034.tar.bz2
xen-8c779c0f475d33fd26af223ad23f9a027e63f034.zip
xenctx: recognize also -S option for --stack-trace
Update help text. Signed-off-by: Olaf Hering <olaf@aepfle.de> Committed-by: Ian Jackson <ian.jackson.citrix.com>
Diffstat (limited to 'tools/xentrace')
-rw-r--r--tools/xentrace/xenctx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/xentrace/xenctx.c b/tools/xentrace/xenctx.c
index ca81664e26..d5af9c6197 100644
--- a/tools/xentrace/xenctx.c
+++ b/tools/xentrace/xenctx.c
@@ -924,7 +924,7 @@ static void usage(void)
printf(" frame pointers.\n");
printf(" -s SYMTAB, --symbol-table=SYMTAB\n");
printf(" read symbol table from SYMTAB.\n");
- printf(" --stack-trace print a complete stack trace.\n");
+ printf(" -S --stack-trace print a complete stack trace.\n");
printf(" -k, --kernel-start\n");
printf(" set user/kernel split. (default 0xc0000000)\n");
#ifdef __ia64__
@@ -938,7 +938,7 @@ static void usage(void)
int main(int argc, char **argv)
{
int ch;
- static const char *sopts = "fs:hak:"
+ static const char *sopts = "fs:hak:S"
#ifdef __ia64__
"r:"
#endif