Sjoerd's thread changes (including down_sema typo fix).

Note: waitflag not supported on NT.
This commit is contained in:
Guido van Rossum 1996-10-08 14:17:53 +00:00
parent 5b1d9bad32
commit cf1474b73a
8 changed files with 47 additions and 18 deletions

View file

@ -203,9 +203,9 @@ void free_sema(type_sema aSemaphore)
}
void down_sema(type_sema aSemaphore)
void down_sema(type_sema aSemaphore, int waitflag)
{
return -1;
}
void up_sema(type_sema aSemaphore)