Changeset 12d6c98 in mainline for uspace/lib/posix/source/pthread/condvar.c
- Timestamp:
- 2013-10-16T16:09:14Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2923c7b
- Parents:
- c2a6983
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/pthread/condvar.c
rc2a6983 r12d6c98 38 38 #include "posix/pthread.h" 39 39 #include "errno.h" 40 #include "../internal/common.h" 40 41 41 42 int pthread_cond_init(pthread_cond_t *restrict condvar, 42 43 const pthread_condattr_t *restrict attr) 43 44 { 45 not_implemented(); 44 46 return ENOTSUP; 45 47 } … … 47 49 int pthread_cond_destroy(pthread_cond_t *condvar) 48 50 { 51 not_implemented(); 49 52 return ENOTSUP; 50 53 } … … 52 55 int pthread_cond_broadcast(pthread_cond_t *condvar) 53 56 { 57 not_implemented(); 54 58 return ENOTSUP; 55 59 } … … 57 61 int pthread_cond_signal(pthread_cond_t *condvar) 58 62 { 63 not_implemented(); 59 64 return ENOTSUP; 60 65 } … … 63 68 pthread_mutex_t *restrict mutex, const struct __POSIX_DEF__(timespec) *restrict timeout) 64 69 { 70 not_implemented(); 65 71 return ENOTSUP; 66 72 } … … 69 75 pthread_mutex_t *restrict mutex) 70 76 { 77 not_implemented(); 71 78 return ENOTSUP; 72 79 } … … 75 82 int pthread_condattr_init(pthread_condattr_t *attr) 76 83 { 84 not_implemented(); 77 85 return ENOTSUP; 78 86 } … … 80 88 int pthread_condattr_destroy(pthread_condattr_t *attr) 81 89 { 90 not_implemented(); 82 91 return ENOTSUP; 83 92 }
Note:
See TracChangeset
for help on using the changeset viewer.