diff options
author | rpj <rpj> | 1999-01-03 18:47:50 +0000 |
---|---|---|
committer | rpj <rpj> | 1999-01-03 18:47:50 +0000 |
commit | 36f0ed4155fdab7b12c5c5ddf4252170fac0a77e (patch) | |
tree | 2d8ed62df0b72d42a74b383d389ee7c28a0324da /fork.c | |
parent | 4650bcf1f1efd88a0c8f502c28945bfabd7ef6db (diff) |
Merge John Bossom's code into the main trunk. See ChangeLog for details.snapshot-1999-01-04-1305
This will be tagged as snapshot-1999-01-04-1305
Diffstat (limited to 'fork.c')
-rw-r--r-- | fork.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -5,12 +5,12 @@ * Implementation of fork() for POSIX threads. */ -/* FIXME! */ -#define ENOMEM 0 #include "pthread.h" #include "implement.h" +#if 0 /* Pre Bossom */ + int pthread_atfork(void (*prepare)(void), void (*parent)(void), @@ -139,3 +139,5 @@ fork() } #endif /* HAVE_PID_T && HAVE_FORK */ + +#endif /* Pre Bossom */ |