summaryrefslogtreecommitdiffstats
path: root/staptree.h
diff options
context:
space:
mode:
authorhunt <hunt>2006-02-23 21:01:51 +0000
committerhunt <hunt>2006-02-23 21:01:51 +0000
commit58cf0567b5d6f06e320d169be722eefb3df2b2c1 (patch)
treead71d183e5775af724f6669836c78279db59eefc /staptree.h
parentaff9a0ecf38b32f94dca0cc8abad939dfbf03575 (diff)
downloadsystemtap-steved-58cf0567b5d6f06e320d169be722eefb3df2b2c1.tar.gz
systemtap-steved-58cf0567b5d6f06e320d169be722eefb3df2b2c1.tar.xz
systemtap-steved-58cf0567b5d6f06e320d169be722eefb3df2b2c1.zip
2006-02-23 Martin Hunt <hunt@redhat.com>
PR 1989. Adds support for %p in printf * staptree.h (struct print_format): Add conv_unsigned_ptr. * staptree.cxx (components_to_string): Output 'p' for conv_unsigned_ptr. * elaborate.cxx (visit_print_format): Add case for conv_unsigned_ptr.
Diffstat (limited to 'staptree.h')
-rw-r--r--staptree.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/staptree.h b/staptree.h
index cde87372..bb472507 100644
--- a/staptree.h
+++ b/staptree.h
@@ -277,6 +277,7 @@ struct print_format: public expression
conv_signed_decimal,
conv_unsigned_decimal,
conv_unsigned_octal,
+ conv_unsigned_ptr,
conv_unsigned_uppercase_hex,
conv_unsigned_lowercase_hex,
conv_string,