diff options
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) |