* process.c (after_fork): ignores a termination request in the

parent process.  [ruby-dev:37447]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21076 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-12-26 20:39:07 +00:00
Родитель b2e95674f6
Коммит 2d5061bd98
2 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Sat Dec 27 05:38:59 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* process.c (after_fork): ignores a termination request in the
parent process. [ruby-dev:37447]
Sat Dec 27 01:52:39 2008 James Edward Gray II <jeg2@ruby-lang.org>
* lib/csv.rb: Using a more robust transcoding scheme to produce
@ -197,7 +202,7 @@ Wed Dec 24 06:29:32 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in (OBJDUMP, OBJCOPY): autoconf list is not comma
separated.
* configure.in (AC_HEADER_STDC, AC_CHECK_HEADERS AC_CHECK_FUNCS):
* configure.in (AC_HEADER_STDC, AC_CHECK_HEADERS, AC_CHECK_FUNCS):
removed duplicated checks.
Wed Dec 24 03:21:21 2008 Yukihiro Matsumoto <matz@ruby-lang.org>

Просмотреть файл

@ -978,7 +978,7 @@ static int forked_child = 0;
#define after_exec() \
(rb_thread_start_timer_thread(), forked_child = 0, rb_disable_interrupt())
#define before_fork() before_exec()
#define after_fork() after_exec()
#define after_fork() (GET_THREAD()->thrown_errinfo = 0, after_exec())
#include "dln.h"