pthread.h: Mark pthread_exit() as not returning

This commit is contained in:
Joel Sherrill 2016-03-21 16:20:18 -05:00
parent 13707ae933
commit 1f9599f3a7
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ int _EXFUN(pthread_detach, (pthread_t __pthread));
/* Thread Termination, p1003.1c/Draft 10, p. 150 */
void _EXFUN(pthread_exit, (void *__value_ptr));
void _EXFUN(pthread_exit, (void *__value_ptr)) __dead2;
/* Get Calling Thread's ID, p1003.1c/Draft 10, p. XXX */