diff options
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/buildok/sched_test.stp | 4 | ||||
-rwxr-xr-x | testsuite/buildok/tskschedule.stp | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/testsuite/buildok/sched_test.stp b/testsuite/buildok/sched_test.stp index 547b0682..3fa9187d 100755 --- a/testsuite/buildok/sched_test.stp +++ b/testsuite/buildok/sched_test.stp @@ -32,3 +32,7 @@ probe scheduler.balance { log(pp()) } +probe scheduler.ctxswitch +{ + printf("%d, %d, %d\n", prev_pid, next_pid, prevtsk_state); +} diff --git a/testsuite/buildok/tskschedule.stp b/testsuite/buildok/tskschedule.stp deleted file mode 100755 index 5c58b192..00000000 --- a/testsuite/buildok/tskschedule.stp +++ /dev/null @@ -1,6 +0,0 @@ -#! stap -p4 - -probe tskdispatch.ctxswitch -{ - printf("%d, %d, %d\n", prev_pid, next_pid, prevtsk_state); -} |