[前][次][番号順一覧][スレッド一覧]

ruby-changes:27640

From: kosaki <ko1@a...>
Date: Sun, 10 Mar 2013 14:12:51 +0900 (JST)
Subject: [ruby-changes:27640] kosaki:r39691 (trunk): * probes.d (symbol-create): change argument name `string' to

kosaki	2013-03-10 14:11:56 +0900 (Sun, 10 Mar 2013)

  New Revision: 39691

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=39691

  Log:
    * probes.d (symbol-create): change argument name `string' to
      `str'. `string' is a keyword for systemtap.

  Modified files:
    trunk/ChangeLog
    trunk/probes.d

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 39690)
+++ ChangeLog	(revision 39691)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Wed Mar  6 03:27:43 2013  KOSAKI Motohiro  <kosaki.motohiro@g...>
+
+	* probes.d (symbol-create): change argument name `string' to
+	  `str'. `string' is a keyword for systemtap.
+
 Tue Mar  5 22:23:01 2013  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
 	* probes.d: added argument name
Index: probes.d
===================================================================
--- probes.d	(revision 39690)
+++ probes.d	(revision 39691)
@@ -151,15 +151,15 @@ provider ruby { https://github.com/ruby/ruby/blob/trunk/probes.d#L151
   probe string__create(long length, const char *filename, int lineno);
 
   /*
-     ruby:::symbol-create(string, filename, lineno);
+     ruby:::symbol-create(str, filename, lineno);
 
      This probe is fired when a Symbol is about to be allocated.
 
-      * `string` the contents of the symbol (string)
+      * `str` the contents of the symbol (string)
       * `filename` the name of the file where the string is allocated (string)
       * `lineno` the line number in the file where the string is allocated (int)
   */
-  probe symbol__create(const char *string, const char *filename, int lineno);
+  probe symbol__create(const char *str, const char *filename, int lineno);
 
   /*
      ruby:::parse-begin(sourcefile, lineno);

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]