ruby-changes:31213
From: akr <ko1@a...>
Date: Tue, 15 Oct 2013 17:48:39 +0900 (JST)
Subject: [ruby-changes:31213] akr:r43292 (trunk): * process.c: Fix a typo. MacOS X don't have ENOTSUPP.
akr 2013-10-15 17:48:33 +0900 (Tue, 15 Oct 2013) New Revision: 43292 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=43292 Log: * process.c: Fix a typo. MacOS X don't have ENOTSUPP. Modified files: trunk/ChangeLog trunk/process.c Index: ChangeLog =================================================================== --- ChangeLog (revision 43291) +++ ChangeLog (revision 43292) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Tue Oct 15 17:47:59 2013 Tanaka Akira <akr@f...> + + * process.c: Fix a typo. MacOS X don't have ENOTSUPP. + Mon Oct 14 12:32:52 2013 Nobuyoshi Nakada <nobu@r...> * ruby.c (process_options): load statically linked extensions before Index: process.c =================================================================== --- process.c (revision 43291) +++ process.c (revision 43292) @@ -1081,7 +1081,7 @@ before_exec_non_async_signal_safe(void) https://github.com/ruby/ruby/blob/trunk/process.c#L1081 { if (!forked_child) { /* - * On Mac OS X 10.5.x (Leopard) or earlier, exec() may return ENOTSUPP + * On Mac OS X 10.5.x (Leopard) or earlier, exec() may return ENOTSUP * if the process have multiple threads. Therefore we have to kill * internal threads temporary. [ruby-core:10583] * This is also true on Haiku. It returns Errno::EPERM against exec() -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/