Merge branch 'gcc-invalid-prototype' into refs/top-bases/gcc-branch
This commit is contained in:
commit
9e195d0cbf
|
@ -195,7 +195,7 @@ typedef struct kthread kthread_t;
|
||||||
zk_thread_create(func, arg)
|
zk_thread_create(func, arg)
|
||||||
#define thread_exit() thr_exit(NULL)
|
#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(why) (FALSE)
|
||||||
#define ISSIG(thr, why) (FALSE)
|
#define ISSIG(thr, why) (FALSE)
|
||||||
|
|
|
@ -56,7 +56,7 @@ struct utsname utsname = {
|
||||||
*/
|
*/
|
||||||
/*ARGSUSED*/
|
/*ARGSUSED*/
|
||||||
kthread_t *
|
kthread_t *
|
||||||
zk_thread_create(void (*func)(void), void *arg)
|
zk_thread_create(void (*func)(), void *arg)
|
||||||
{
|
{
|
||||||
thread_t tid;
|
thread_t tid;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue