summaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index e8ddb69c..c78052c9 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,13 @@
* What's new in version 0.7
+- The vector of script command line arguments is available in a
+ tapset-provided global array argv[]. It is indexed 1 ... argc,
+ another global. This can substitute for of preprocessor
+ directives @NNN that fail at parse time if there are not
+ enough arguments.
+
+ printf("argv: %s %s %s", argv[1], argv[2], argv[3])
+
- .statement("func@file+line") probes are now supported to allow a
match relative to the entry of the function incremented by line
number. This allows using the same systemtap script if the rest