aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/include/pthread.h
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2009-12-17 19:22:23 +0000
committerJeff Johnston <jjohnstn@redhat.com>2009-12-17 19:22:23 +0000
commitf10d3487709cba8fc9c90800b09966a8c86600d4 (patch)
tree109e8f0e0126fb09bc482335316e9a274e859b9d /newlib/libc/include/pthread.h
parent314c2d2fedc5f377c50defafc1e296240f8dbd38 (diff)
downloadnewlib-f10d3487709cba8fc9c90800b09966a8c86600d4.zip
newlib-f10d3487709cba8fc9c90800b09966a8c86600d4.tar.gz
newlib-f10d3487709cba8fc9c90800b09966a8c86600d4.tar.bz2
2009-12-17 Ralf Corsepius <ralf.corsepius@rtems.org>
* libc/include/pthread.h: Add pthread_atfork, pthread_rwlock_unlock * libc/include/sys/stat.h: Use struct timespec st_*tim, blksize_t st_blksize, blkcnt_t st_blocks. Add st_*time compatibility macros.
Diffstat (limited to 'newlib/libc/include/pthread.h')
-rw-r--r--newlib/libc/include/pthread.h20
1 files changed, 5 insertions, 15 deletions
diff --git a/newlib/libc/include/pthread.h b/newlib/libc/include/pthread.h
index 8dc7872..f5af164 100644
--- a/newlib/libc/include/pthread.h
+++ b/newlib/libc/include/pthread.h
@@ -33,21 +33,10 @@ extern "C" {
#include <time.h>
#include <sys/sched.h>
-/* Register Fork Handlers, P1003.1c/Draft 10, P1003.1c/Draft 10, p. 27
-
- If an OS does not support processes, then it falls under this provision
- and may not provide pthread_atfork():
-
- "Either the implementation shall support the pthread_atfork() function
- as described above or the pthread_atfork() funciton shall not be
- provided."
-
- NOTE: RTEMS does not provide pthread_atfork(). */
-
-#if !defined(__rtems__) && !defined(__XMK__)
-#warning "Add pthread_atfork() prototype"
-#endif
-
+/* Register Fork Handlers */
+int _EXFUN(pthread_atfork,(void (*prepare)(void), void (*parent)(void),
+ void (*child)(void)));
+
/* Mutex Initialization Attributes, P1003.1c/Draft 10, p. 81 */
int _EXFUN(pthread_mutexattr_init, (pthread_mutexattr_t *__attr));
@@ -345,6 +334,7 @@ int _EXFUN(pthread_rwlock_rdlock,(pthread_rwlock_t *__rwlock));
int _EXFUN(pthread_rwlock_tryrdlock,(pthread_rwlock_t *__rwlock));
int _EXFUN(pthread_rwlock_timedrdlock,
(pthread_rwlock_t *__rwlock, _CONST struct timespec *__abstime));
+int _EXFUN(pthread_rwlock_unlock,(pthread_rwlock_t *__rwlock));
int _EXFUN(pthread_rwlock_wrlock,(pthread_rwlock_t *__rwlock));
int _EXFUN(pthread_rwlock_trywrlock,(pthread_rwlock_t *__rwlock));
int _EXFUN(pthread_rwlock_timedwrlock,