HelenOS sources

pthread_getspecific  106 uspace/lib/posix/include/posix/pthread.h extern void *pthread_getspecific(pthread_key_t);
pthread_getspecific   42 uspace/lib/posix/test/pthread/keys.c 	PCUT_ASSERT_PTR_EQUALS((void *) 0x0d9e, pthread_getspecific(key));
pthread_getspecific   54 uspace/lib/posix/test/pthread/keys.c 	PCUT_ASSERT_PTR_EQUALS(NULL, pthread_getspecific(key));
pthread_getspecific   57 uspace/lib/posix/test/pthread/keys.c 	PCUT_ASSERT_PTR_EQUALS((void *) 0x42, pthread_getspecific(key));
pthread_getspecific   66 uspace/lib/posix/test/pthread/keys.c 	PCUT_ASSERT_PTR_EQUALS((void *) 0x42, pthread_getspecific(key));
pthread_getspecific   72 uspace/lib/posix/test/pthread/keys.c 	PCUT_ASSERT_PTR_EQUALS((void *) 0x42, pthread_getspecific(key));
HelenOS homepage, sources at GitHub