From 11f26f7ac85cc1b1b842bea4be656f7ac0f5fc7a Mon Sep 17 00:00:00 2001 From: bje Date: Mon, 10 Aug 1998 18:34:40 +0000 Subject: 1998-08-11 Ben Elliston * Makefile (LIB): Define. (clean): Define target. (all): Build a library not just the object files. * pthread.h: Provide a definition for struct timespec if we don't already have one. * windows.c (TlsGetValue): Bug fix. --- windows.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'windows.c') diff --git a/windows.c b/windows.c index 2549f33..d55a9d7 100644 --- a/windows.c +++ b/windows.c @@ -98,10 +98,10 @@ BOOL TlsSetValue(DWORD index, LPVOID value) return TRUE; } -BOOL TlsGetValue(DWORD index, LPVOID value) +LPVOID TlsGetValue(DWORD index) { DIAG("TlsGetValue"); - return TRUE; + return 0; } BOOL SetThreadPriority(HANDLE threadHandle, int priority) -- cgit v1.2.3