removed arg from threadSuspend

This commit is contained in:
Jeff Hill
2000-02-08 19:10:06 +00:00
parent 8cb8533077
commit 5f2b90bcea

View File

@@ -87,12 +87,11 @@ threadId threadCreate(const char *name,
return((threadId)tid);
}
void threadSuspend(threadId id)
void threadSuspend()
{
int tid = (int)id;
STATUS status;
status = taskSuspend(tid);
status = taskSuspend(taskIdSelf());
if(status) errlogPrintf("threadSuspend failed\n");
}