Changeset 12d6c98 in mainline for uspace/lib/posix/source/pthread/threads.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/threads.c
rc2a6983 r12d6c98 40 40 #include "posix/stdlib.h" 41 41 #include "libc/thread.h" 42 #include "../internal/common.h" 42 43 43 44 pthread_t pthread_self(void) … … 54 55 void *(*start_routine)(void *), void *arg) 55 56 { 57 not_implemented(); 56 58 return ENOTSUP; 57 59 } … … 59 61 int pthread_join(pthread_t thread, void **ret_val) 60 62 { 63 not_implemented(); 61 64 return ENOTSUP; 62 65 } … … 64 67 int pthread_detach(pthread_t thread) 65 68 { 69 not_implemented(); 66 70 return ENOTSUP; 67 71 } … … 69 73 int pthread_attr_init(pthread_attr_t *attr) 70 74 { 75 not_implemented(); 71 76 return ENOTSUP; 72 77 } … … 74 79 int pthread_attr_destroy(pthread_attr_t *attr) 75 80 { 81 not_implemented(); 76 82 return ENOTSUP; 77 83 }
Note:
See TracChangeset
for help on using the changeset viewer.