diff options
author | Guido van Rossum <guido@python.org> | 1996-10-08 14:17:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-10-08 14:17:53 (GMT) |
commit | cf1474b73ad3e4085af220f3845b75b201974d38 (patch) | |
tree | 3f0376625f60a95747ce8e83307a3b15cf077f89 /Python/thread_os2.h | |
parent | 5b1d9bad3266b90d7d37b7f2543d22887c2623c9 (diff) | |
download | cpython-cf1474b73ad3e4085af220f3845b75b201974d38.zip cpython-cf1474b73ad3e4085af220f3845b75b201974d38.tar.gz cpython-cf1474b73ad3e4085af220f3845b75b201974d38.tar.bz2 |
Sjoerd's thread changes (including down_sema typo fix).
Note: waitflag not supported on NT.
Diffstat (limited to 'Python/thread_os2.h')
-rw-r--r-- | Python/thread_os2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/thread_os2.h b/Python/thread_os2.h index f9eda92..00a5244 100644 --- a/Python/thread_os2.h +++ b/Python/thread_os2.h @@ -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) |