This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug translator/4935] support on-the-fly probe enable/disable syntax


------- Additional Comments From mhiramat at redhat dot com  2007-10-08 16:49 -------
I'm interested in this feature.

As far as I understand, with this feature, systemtap treats the next script ;
---
 probe ALIAS=PROBEPOINT { stmt1; }
 probe ALIAS if (expr) { stmt2; }
---
as
---
 probe PROBEPOINT { if (!expr) next; stmt1; stmt2}
---

In that case, 
---
 probe ALIAS=PROBEPOINT { stmt1; }
 probe ALIAS if (expr) { stmt2; }
 probe ALIAS { stmt3; }
---
will be treated as
---
 probe PROBEPOINT { if (!expr) next; stmt1; stmt2}
 probe PROBEPOINT { stmt1; stmt3}
---
Is that right?


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=4935

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]