From a0f1e21ff939612898d63ae2245e47dffc1a8153 Mon Sep 17 00:00:00 2001 From: rsc Date: Tue, 20 Apr 2004 02:03:38 +0000 Subject: make things work on SunOS --- src/libthread/create.c | 2 +- src/libthread/sched.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'src/libthread') diff --git a/src/libthread/create.c b/src/libthread/create.c index 518eaae6..a8647f94 100644 --- a/src/libthread/create.c +++ b/src/libthread/create.c @@ -25,7 +25,7 @@ newthread(Proc *p, void (*f)(void *arg), void *arg, uint stacksize, char *name, sysfatal("bad stacksize %d", stacksize); t = _threadmalloc(sizeof(Thread), 1); s = _threadmalloc(stacksize, 0); - t->stk = (char*)s; + t->stk = (uchar*)s; t->stksize = stacksize; _threaddebugmemset(s, 0xFE, stacksize); _threadinitstack(t, f, arg); diff --git a/src/libthread/sched.c b/src/libthread/sched.c index 250a19a2..d193d6ce 100644 --- a/src/libthread/sched.c +++ b/src/libthread/sched.c @@ -1,3 +1,4 @@ +#include #include #include #include "threadimpl.h" -- cgit v1.2.3