Date: Sat, 19 Feb 2005 12:09:35 GMT From: Robert Watson <rwatson@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 71303 for review Message-ID: <200502191209.j1JC9ZHq014204@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=71303 Change 71303 by rwatson@rwatson_tislabs on 2005/02/19 12:09:25 Prototype for _pthread_create so that thr_init.c compiles. Affected files ... .. //depot/projects/davidxu_thread/src/lib/libthread/thread/thr_private.h#21 edit Differences ... ==== //depot/projects/davidxu_thread/src/lib/libthread/thread/thr_private.h#21 (text+ko) ==== @@ -670,6 +670,8 @@ const struct timespec *); int _pthread_cond_signal(pthread_cond_t *); int _pthread_cond_broadcast(pthread_cond_t *); +int _pthread_create(pthread_t * thread, const pthread_attr_t * attr, + void *(*start_routine) (void *), void *arg); int _pthread_key_create(pthread_key_t *, void (*) (void *)); int _pthread_key_delete(pthread_key_t); int _pthread_mutex_destroy(pthread_mutex_t *);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200502191209.j1JC9ZHq014204>