From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7719 invoked by alias); 8 Oct 2007 16:49:30 -0000 Received: (qmail 7698 invoked by uid 48); 8 Oct 2007 16:49:21 -0000 Date: Mon, 08 Oct 2007 16:49:00 -0000 Message-ID: <20071008164921.7697.qmail@sourceware.org> From: "mhiramat at redhat dot com" To: systemtap@sources.redhat.com In-Reply-To: <20070817183537.4935.fche@redhat.com> References: <20070817183537.4935.fche@redhat.com> Reply-To: sourceware-bugzilla@sourceware.org Subject: [Bug translator/4935] support on-the-fly probe enable/disable syntax X-Bugzilla-Reason: AssignedTo Mailing-List: contact systemtap-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org X-SW-Source: 2007-q4/txt/msg00090.txt.bz2 ------- 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.