diff options
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 |