diff options
author | bje <bje> | 1998-08-10 18:34:40 +0000 |
---|---|---|
committer | bje <bje> | 1998-08-10 18:34:40 +0000 |
commit | 11f26f7ac85cc1b1b842bea4be656f7ac0f5fc7a (patch) | |
tree | 60edac9412c14fdee0eb5b4a014e4f7607b49dfd /windows.c | |
parent | 9b0e93aa59205fa6e35f0d8e5c2065c6e806f114 (diff) |
1998-08-11 Ben Elliston <bje@cygnus.com>pre-compiled-auug99
* 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.
Diffstat (limited to 'windows.c')
-rw-r--r-- | windows.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |