2013-02-02 20:47:37 +00:00
|
|
|
From 63d0a6cd71a0e3b6ba1a9cb4e1ba880121840a7e Mon Sep 17 00:00:00 2001
|
2012-10-31 00:56:59 +00:00
|
|
|
From: Alon Levy <alevy@redhat.com>
|
|
|
|
Date: Sun, 2 Sep 2012 02:04:16 +0300
|
|
|
|
Subject: [PATCH] dtrace backend: add function to reserved words
|
|
|
|
|
|
|
|
Signed-off-by: Alon Levy <alevy@redhat.com>
|
|
|
|
Signed-off-by: Stefan Hajnoczi <stefanha@gmail.com>
|
|
|
|
---
|
|
|
|
scripts/tracetool/backend/dtrace.py | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/scripts/tracetool/backend/dtrace.py b/scripts/tracetool/backend/dtrace.py
|
|
|
|
index 9cab75c..6be7047 100644
|
|
|
|
--- a/scripts/tracetool/backend/dtrace.py
|
|
|
|
+++ b/scripts/tracetool/backend/dtrace.py
|
|
|
|
@@ -87,7 +87,7 @@ def stap(events):
|
|
|
|
if len(e.args) > 0:
|
|
|
|
for name in e.args.names():
|
|
|
|
# Append underscore to reserved keywords
|
|
|
|
- if name in ('limit', 'in', 'next', 'self'):
|
|
|
|
+ if name in ('limit', 'in', 'next', 'self', 'function'):
|
|
|
|
name += '_'
|
|
|
|
out(' %s = $arg%d;' % (name, i))
|
|
|
|
i += 1
|