diff options
author | fche <fche> | 2005-11-09 17:08:19 +0000 |
---|---|---|
committer | fche <fche> | 2005-11-09 17:08:19 +0000 |
commit | 61df7c736e8d2388b4236b4eb8eaf32ab09d3cf7 (patch) | |
tree | 85d4beaac5ff07d833d02fa171b6c54a38aab026 /testsuite/buildok/context_test.stp | |
parent | 549b9c3b29bafc954f097ff7cca83e979c52751e (diff) | |
download | systemtap-steved-61df7c736e8d2388b4236b4eb8eaf32ab09d3cf7.tar.gz systemtap-steved-61df7c736e8d2388b4236b4eb8eaf32ab09d3cf7.tar.xz systemtap-steved-61df7c736e8d2388b4236b4eb8eaf32ab09d3cf7.zip |
2005-11-09 Frank Ch. Eigler <fche@elastic.org>
Reported by Guang Lei Li <liguangl@cn.ibm.com>:
* tapset/context.stp (pid,ppid,tid): Correctly pick tgid vs pid.
* testsuite/buildok/context_test.stp: Print out tid() too.
Diffstat (limited to 'testsuite/buildok/context_test.stp')
-rwxr-xr-x | testsuite/buildok/context_test.stp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testsuite/buildok/context_test.stp b/testsuite/buildok/context_test.stp index c85bce67..c732999d 100755 --- a/testsuite/buildok/context_test.stp +++ b/testsuite/buildok/context_test.stp @@ -10,6 +10,7 @@ function print_stuff () { print("\n\n") log("execname is \"" . execname() . "\"") log("pid is " . string(pid())) + log("tid is " . string(tid())) log("pexecname is \"" . pexecname() . "\"") log("ppid is " . string(ppid())) log("uid is " . string(uid())) |