12345678910111213141516171819202122232425262728293031323334353637 |
- #include <stdlib.h>
- #include "pthreadP.h"
- void
- attribute_protected attribute_noreturn
- __pthread_exit (void* value)
- {
- THREAD_SETMEM (THREAD_SELF, result, value);
- __do_cancel ();
- }
- strong_alias (__pthread_exit, pthread_exit)
- PTHREAD_STATIC_FN_REQUIRE (pthread_create)
|