Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
	* 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.
  • Loading branch information
Ulrich Drepper committed Feb 19, 2004
1 parent 1dc7447 commit 64d2a37
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
2004-02-19 Ulrich Drepper <[email protected]>

* 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
prevented system-dependent handling from being used.

Expand Down
4 changes: 2 additions & 2 deletions libio/iopopen.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@

#ifndef _IO_fork
#ifdef _LIBC
#define _IO_fork __vfork
#define _IO_fork __fork
#else
#define _IO_fork vfork /* defined in libiberty, if needed */
#define _IO_fork fork /* defined in libiberty, if needed */
#endif
extern _IO_pid_t _IO_fork __P ((void));
#endif
Expand Down
4 changes: 2 additions & 2 deletions libio/oldiopopen.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@

#ifndef _IO_fork
#ifdef _LIBC
#define _IO_fork __vfork
#define _IO_fork __fork
#else
#define _IO_fork vfork /* defined in libiberty, if needed */
#define _IO_fork fork /* defined in libiberty, if needed */
#endif
extern _IO_pid_t _IO_fork __P ((void));
#endif
Expand Down

0 comments on commit 64d2a37

Please sign in to comment.