diff options
author | Guido van Rossum <guido@python.org> | 1996-10-08 14:17:53 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-10-08 14:17:53 +0000 |
commit | 7a0232ab140edb21ae16ee49357e94e5aa80a647 (patch) | |
tree | ffa7dd2496674f08f1b9cf2e7dcc332bd524897f /Python/thread_os2.h | |
parent | fd9d95648aa55e5ef7b5c240176541317052cac8 (diff) | |
download | cpython-7a0232ab140edb21ae16ee49357e94e5aa80a647.tar.gz |
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 f9eda928db..00a5244feb 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) |