mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 11:20:07 +00:00
Update.
* libio/iopopen.c (_IO_new_proc_open): It's not kosher to use cfork instead of fork. * libio/oldiopopen.c (_IO_old_proc_open): Likewise.
This commit is contained in:
parent
1dc74473a8
commit
64d2a3790d
@ -1,5 +1,9 @@
|
|||||||
2004-02-19 Ulrich Drepper <drepper@redhat.com>
|
2004-02-19 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* libio/iopopen.c (_IO_new_proc_open): It's not kosher to use
|
||||||
|
cfork instead of fork.
|
||||||
|
* libio/oldiopopen.c (_IO_old_proc_open): Likewise.
|
||||||
|
|
||||||
* sysdeps/unix/clock_settime.c (clock_settime): Fix typo which
|
* sysdeps/unix/clock_settime.c (clock_settime): Fix typo which
|
||||||
prevented system-dependent handling from being used.
|
prevented system-dependent handling from being used.
|
||||||
|
|
||||||
|
@ -46,9 +46,9 @@
|
|||||||
|
|
||||||
#ifndef _IO_fork
|
#ifndef _IO_fork
|
||||||
#ifdef _LIBC
|
#ifdef _LIBC
|
||||||
#define _IO_fork __vfork
|
#define _IO_fork __fork
|
||||||
#else
|
#else
|
||||||
#define _IO_fork vfork /* defined in libiberty, if needed */
|
#define _IO_fork fork /* defined in libiberty, if needed */
|
||||||
#endif
|
#endif
|
||||||
extern _IO_pid_t _IO_fork __P ((void));
|
extern _IO_pid_t _IO_fork __P ((void));
|
||||||
#endif
|
#endif
|
||||||
|
@ -45,9 +45,9 @@
|
|||||||
|
|
||||||
#ifndef _IO_fork
|
#ifndef _IO_fork
|
||||||
#ifdef _LIBC
|
#ifdef _LIBC
|
||||||
#define _IO_fork __vfork
|
#define _IO_fork __fork
|
||||||
#else
|
#else
|
||||||
#define _IO_fork vfork /* defined in libiberty, if needed */
|
#define _IO_fork fork /* defined in libiberty, if needed */
|
||||||
#endif
|
#endif
|
||||||
extern _IO_pid_t _IO_fork __P ((void));
|
extern _IO_pid_t _IO_fork __P ((void));
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user