summaryrefslogtreecommitdiff
path: root/fork.c
diff options
context:
space:
mode:
authorrpj <rpj>1999-01-03 18:47:50 +0000
committerrpj <rpj>1999-01-03 18:47:50 +0000
commit36f0ed4155fdab7b12c5c5ddf4252170fac0a77e (patch)
tree2d8ed62df0b72d42a74b383d389ee7c28a0324da /fork.c
parent4650bcf1f1efd88a0c8f502c28945bfabd7ef6db (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.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fork.c b/fork.c
index 3a25c48..61da545 100644
--- a/fork.c
+++ b/fork.c
@@ -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 */