Now fixed in fix-pthreads branch

This commit is contained in:
Brian Behlendorf 2008-12-18 09:58:42 -08:00
parent b23299c7db
commit c8f253cda8
2 changed files with 2 additions and 2 deletions

View File

@ -195,7 +195,7 @@ typedef struct kthread kthread_t;
zk_thread_create(func, arg)
#define thread_exit() thr_exit(NULL)
extern kthread_t *zk_thread_create(void (*func)(void), void *arg);
extern kthread_t *zk_thread_create(void (*func)(), void *arg);
#define issig(why) (FALSE)
#define ISSIG(thr, why) (FALSE)

View File

@ -56,7 +56,7 @@ struct utsname utsname = {
*/
/*ARGSUSED*/
kthread_t *
zk_thread_create(void (*func)(void), void *arg)
zk_thread_create(void (*func)(), void *arg)
{
thread_t tid;