Changeset 12d6c98 in mainline for uspace/lib/posix/source/pthread/keys.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/keys.c
rc2a6983 r12d6c98 39 39 #include "posix/pthread.h" 40 40 #include "errno.h" 41 #include "../internal/common.h" 41 42 42 43 43 44 void *pthread_getspecific(pthread_key_t key) 44 45 { 46 not_implemented(); 45 47 return NULL; 46 48 } … … 48 50 int pthread_setspecific(pthread_key_t key, const void *data) 49 51 { 52 not_implemented(); 50 53 return ENOTSUP; 51 54 } … … 53 56 int pthread_key_delete(pthread_key_t key) 54 57 { 58 not_implemented(); 55 59 return ENOTSUP; 56 60 } … … 58 62 int pthread_key_create(pthread_key_t *key, void (*destructor)(void*)) 59 63 { 64 not_implemented(); 60 65 return ENOTSUP; 61 66 }
Note:
See TracChangeset
for help on using the changeset viewer.