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