diff options
author | William Cohen <wcohen@redhat.com> | 2009-02-06 12:36:52 -0500 |
---|---|---|
committer | William Cohen <wcohen@redhat.com> | 2009-02-06 12:36:52 -0500 |
commit | 2b7e0f29ac8bc4ed53c960607ead69cc7a571454 (patch) | |
tree | e76f2fa2e469873bd3cf8f6521899999a773da31 /testsuite/systemtap.samples/symbols.stp | |
parent | e3687b9e6c8c0fe634ee2d33e770581d3a1e33ba (diff) | |
download | systemtap-steved-2b7e0f29ac8bc4ed53c960607ead69cc7a571454.tar.gz systemtap-steved-2b7e0f29ac8bc4ed53c960607ead69cc7a571454.tar.xz systemtap-steved-2b7e0f29ac8bc4ed53c960607ead69cc7a571454.zip |
Move symbols.exp and symbols.stp to systemtap.context directory.
Diffstat (limited to 'testsuite/systemtap.samples/symbols.stp')
-rw-r--r-- | testsuite/systemtap.samples/symbols.stp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/testsuite/systemtap.samples/symbols.stp b/testsuite/systemtap.samples/symbols.stp deleted file mode 100644 index 040c3444..00000000 --- a/testsuite/systemtap.samples/symbols.stp +++ /dev/null @@ -1,11 +0,0 @@ -#! stap - -probe begin { - # a spectrum of figures for 32-bit x86 - print_stack ("0x0 0x80000000 0xc0000000 0xe0000000 0xf0000000 0xffffffff") - # for x86_64 - print_stack ("0xffffffff00000000 0xffffffff80000000 0xffffffff80120000") - print_stack ("0xffffffff88000000 0xffffffffffffffff") - # ... for a total of 11 lines, which symbols.exp counts - exit () -} |