From 97149ba590564355c631e0902149710dd73862f5 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 25 Sep 1998 13:17:32 +0000 Subject: Added ENOSYS stubs for a number of process routines. --- cpukit/posix/src/pthreadatfork.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cpukit/posix/src/pthreadatfork.c (limited to 'cpukit/posix/src/pthreadatfork.c') diff --git a/cpukit/posix/src/pthreadatfork.c b/cpukit/posix/src/pthreadatfork.c new file mode 100644 index 0000000000..f70f8d7dc1 --- /dev/null +++ b/cpukit/posix/src/pthreadatfork.c @@ -0,0 +1,18 @@ +/* + * pthread_atfork() - POSIX 1003.1b 3.1.3 + * + * $Id$ + */ + +#include +#include + +int pthread_atfork( + void (*prepare)(void), + void (*parent)(void), + void (*child)(void) +) +{ + errno = ENOSYS; + return -1; +} -- cgit v1.2.3