mark pthread_exit() as non-returning.

Requested by: Farooq Mela <fmela0@sm.socccd.cc.ca.us>
This commit is contained in:
Alfred Perlstein 2001-03-04 22:17:52 +00:00
parent 234ff7c46f
commit 86e03b89bb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=73548

View File

@ -225,7 +225,7 @@ int pthread_create __P((pthread_t *, const pthread_attr_t *,
void *(*) (void *), void *));
int pthread_detach __P((pthread_t));
int pthread_equal __P((pthread_t, pthread_t));
void pthread_exit __P((void *));
void pthread_exit __P((void *)) __dead2;
void *pthread_getspecific __P((pthread_key_t));
int pthread_join __P((pthread_t, void **));
int pthread_key_create __P((pthread_key_t *,