filed: http://sourceware.org/bugzilla/show_bug.cgi?id=12413
[staptrace.git] / 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)
     {