filed: http://sourceware.org/bugzilla/show_bug.cgi?id=12413
authorJan Kratochvil <jan.kratochvil@redhat.com>
Wed, 19 Jan 2011 16:08:38 +0000 (17:08 +0100)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Wed, 19 Jan 2011 16:08:38 +0000 (17:08 +0100)
src/staptrace.stp

index 21111d6..54184ee 100755 (executable)
@@ -119,7 +119,6 @@ probe kprocess.create
 {
   if (opt_f && trace[tid ()] != 0)
     {
-      /* systemtap bug?  Why `new_pid' is provided but `new_tid' is not?  */
       new_tid = task_tid (task)
       trace[new_tid] = 1
       if (!opt_q)
@@ -132,9 +131,6 @@ probe kprocess.create
 
 probe kprocess.release
 {
-  /* systemtap bug?  Why `pid' is provided but `tid' is not?  */
-  /* systemtap bug?  Why `[pt]id' is not called `released_[pt]id' to keep the
-     naming in sync with kprocess.create?  */
   tid = task_tid (task)
   if (trace[tid] != 0)
     {