1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* configure.in: need a ",".

* process.c (rb_fork): check CANNOT_FORK_WITH_PTHREAD macro.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17593 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2008-06-26 21:53:40 +00:00
parent d4cddaaa4c
commit 285066dd0b
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
Fri Jun 27 06:52:54 2008 Koichi Sasada <ko1@atdot.net>
* configure.in: need a ",".
* process.c (rb_fork): check CANNOT_FORK_WITH_PTHREAD macro.
Fri Jun 27 06:50:56 2008 Koichi Sasada <ko1@atdot.net>
* vm_eval.c (vm_call_super): fix to call method_missing.

View file

@ -1159,7 +1159,7 @@ main(int argc, char *argv[])
}
return EXIT_SUCCESS;
}]
}],
rb_cv_fork_with_pthread=yes,
rb_cv_fork_with_pthread=no,
rb_cv_fork_with_pthread=yes)])

View file

@ -2412,7 +2412,7 @@ rb_fork(int *status, int (*chfunc)(void*), void *charg, VALUE fds)
static VALUE
rb_f_fork(VALUE obj)
{
#if defined(HAVE_FORK) && !(defined(__NetBSD__) && __NetBSD_Version__ < 400000000)
#if defined(HAVE_FORK) && !defined(CANNOT_FORK_WITH_PTHREAD)
rb_pid_t pid;
rb_secure(2);