summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-24 19:32:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-24 19:32:37 +0000
commit568ebf32f409a766c0ee5c37c79c800ba58591ae (patch)
tree27d71ef8328c291c6ad722912a3ba622415453aa /cpukit
parentnew file (diff)
downloadrtems-568ebf32f409a766c0ee5c37c79c800ba58591ae.tar.bz2
updates to fix typos
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/posix/src/pthread.c20
1 files changed, 7 insertions, 13 deletions
diff --git a/cpukit/posix/src/pthread.c b/cpukit/posix/src/pthread.c
index 79ea3271d2..706b967309 100644
--- a/cpukit/posix/src/pthread.c
+++ b/cpukit/posix/src/pthread.c
@@ -62,24 +62,18 @@ void _POSIX_Threads_Manager_initialization(
);
}
-#ifdef NOT_IMPLEMENTED_YET
-
/*PAGE
*
* 3.1.3 Register Fork Handlers, P1003.1c/Draft 10, P1003.1c/Draft 10, p. 27
+ *
+ * RTEMS does not support processes, so we fall under this and do not
+ * provide this routine:
+ *
+ * "Either the implementation shall support the pthread_atfork() function
+ * as described above or the pthread_atfork() funciton shall not be
+ * provided."
*/
-int pthread_atfork(
- void (*prepare)(void),
- void (*parent)(void),
- void (*child)(void)
-)
-{
- return POSIX_NOT_IMPLEMENTED();
-}
-
-#endif
-
/*PAGE
*
* 13.5.1 Thread Creation Scheduling Attributes, P1003.1c/Draft 10, p. 120