summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzhaolei <zhaolei>2007-11-14 06:39:17 +0000
committerzhaolei <zhaolei>2007-11-14 06:39:17 +0000
commitbfad7055bea18ed614901138cfe25ff3d5eb6096 (patch)
tree26076a5cb07bb5a5fb65064378f305b85fe7d7d4
parent52e6821c09a19dbc57cb40a9ed18f59405f9b75b (diff)
downloadsystemtap-steved-bfad7055bea18ed614901138cfe25ff3d5eb6096.tar.gz
systemtap-steved-bfad7055bea18ed614901138cfe25ff3d5eb6096.tar.xz
systemtap-steved-bfad7055bea18ed614901138cfe25ff3d5eb6096.zip
2007-11-14 Zhaolei <zhaolei@cn.fujitsu.com>
* stapfuncs.5.in (tokenize): Change NULL to blank to avoid misunderstanding.
-rw-r--r--stapfuncs.5.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/stapfuncs.5.in b/stapfuncs.5.in
index cd10a2ba..3802117a 100644
--- a/stapfuncs.5.in
+++ b/stapfuncs.5.in
@@ -110,10 +110,10 @@ string cannot be converted.
.TP
tokenize:string (str:string, delim:string)
Return the next token in the given str string, where the tokens are delimited
-by one of the characters in the delim string. If the str string is non-NULL,
-it returns the first token. If the str string is NULL, it returns the next
+by one of the characters in the delim string. If the str string is not blank,
+it returns the first token. If the str string is blank, it returns the next
token in the string passed in the previous call to tokenize. If no delimiter
-is found, the entire remaining str string is returned. Returns NULL when
+is found, the entire remaining str string is returned. Returns blank when
no more tokens are left.
.SS TIMESTAMP