diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-12-03 16:35:52 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-12-03 16:35:52 +0000 |
commit | 145b4dc249adfa4cebd265b9e402dd5f98c4afc3 (patch) | |
tree | 80ce5dbf591007670bbbb03c8e0dee672342c0fe /winsup/cygwin/perthread.h | |
parent | d2fa946e51347ace19fa1c5a78ebb4fa6e2a2cba (diff) | |
download | cygnal-145b4dc249adfa4cebd265b9e402dd5f98c4afc3.tar.gz cygnal-145b4dc249adfa4cebd265b9e402dd5f98c4afc3.tar.bz2 cygnal-145b4dc249adfa4cebd265b9e402dd5f98c4afc3.zip |
Substitute 0x7fffffff and 0xffffffff by INT32_MAX and UINT32_MAX
throughout, except in assembler code.
Diffstat (limited to 'winsup/cygwin/perthread.h')
-rw-r--r-- | winsup/cygwin/perthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/perthread.h b/winsup/cygwin/perthread.h index 0c3b49b6e..a7095dc53 100644 --- a/winsup/cygwin/perthread.h +++ b/winsup/cygwin/perthread.h @@ -15,7 +15,7 @@ details. */ struct _reent; extern struct _reent reent_data; -#define PER_THREAD_FORK_CLEAR ((void *)0xffffffff) +#define PER_THREAD_FORK_CLEAR ((void *)UINT32_MAX) class per_thread { DWORD tls; |