diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-02-13 07:14:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-02-13 07:14:38 +0000 |
commit | dfdd294a2ac05a80908483846feb5343d4aac714 (patch) | |
tree | c6c2fdabffcf5e81cdf69dc2f78f8b437be6df5f /nptl/sysdeps/unix/sysv/linux/fork.c | |
parent | 2067577c713671471ec03c52425625d69a19d1b4 (diff) | |
download | glibc-dfdd294a2ac05a80908483846feb5343d4aac714.tar glibc-dfdd294a2ac05a80908483846feb5343d4aac714.tar.gz glibc-dfdd294a2ac05a80908483846feb5343d4aac714.tar.bz2 glibc-dfdd294a2ac05a80908483846feb5343d4aac714.zip |
Update.
* Makefile: Add rules to build and run tst-atfork2 test.
* tst-atfork2.c: New file.
* tst-atfork2mod.c: New file.
* sysdeps/unix/sysv/linux/unregister-atfork.c
(__unregister_atfork): Free the memory allocated for the handlers
after removing them from the lists.
* sysdeps/unix/sysv/linux/register-atfork.c: Define memeory
cleanup function.
* tst-atfork1.c (do_test): Wait for the child we forked.
Report error in child.
* sysdeps/unix/sysv/linux/fork.c (__libc_fork): Fix comment.
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux/fork.c')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/fork.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/fork.c b/nptl/sysdeps/unix/sysv/linux/fork.c index b643f89dfc..eba28064ea 100644 --- a/nptl/sysdeps/unix/sysv/linux/fork.c +++ b/nptl/sysdeps/unix/sysv/linux/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. @@ -83,7 +83,7 @@ __libc_fork (void) /* Reset the file list. These are recursive mutexes. */ fresetlockfiles (); - /* We execute this even if the 'fork' call failed. */ + /* Reset locks in the I/O code. */ _IO_list_resetlock (); /* Run the handlers registered for the child. */ |