From cf1474b73ad3e4085af220f3845b75b201974d38 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 8 Oct 1996 14:17:53 +0000 Subject: Sjoerd's thread changes (including down_sema typo fix). Note: waitflag not supported on NT. --- Python/thread_os2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Python/thread_os2.h') 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) -- cgit v1.2.1