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

ruby-changes:23899

From: akr <ko1@a...>
Date: Wed, 6 Jun 2012 22:11:03 +0900 (JST)
Subject: [ruby-changes:23899] akr:r35950 (trunk): fix a comment.

akr	2012-06-06 22:10:54 +0900 (Wed, 06 Jun 2012)

  New Revision: 35950

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

  Log:
    fix a comment.

  Modified files:
    trunk/process.c

Index: process.c
===================================================================
--- process.c	(revision 35949)
+++ process.c	(revision 35950)
@@ -2614,7 +2614,7 @@
 	char *abspath = NULL;
 	if (!NIL_P(e->invoke.cmd.command_abspath))
 	    abspath = RSTRING_PTR(e->invoke.cmd.command_abspath);
-	proc_exec_cmd(abspath, e->invoke.cmd.argv_str, e->envp_str); /* async-signal-safe */
+	proc_exec_cmd(abspath, e->invoke.cmd.argv_str, e->envp_str); /* not async-signal-safe because after_exec. */
     }
 #if !defined(HAVE_FORK)
     preserving_errno(rb_run_exec_options_err(sargp, NULL, errmsg, errmsg_buflen));

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

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