summaryrefslogtreecommitdiff
path: root/pthread_join.c
diff options
context:
space:
mode:
authorrpj <rpj>2004-07-01 07:32:10 +0000
committerrpj <rpj>2004-07-01 07:32:10 +0000
commit1660c9f40520f8af25206defffeff3f8c0fe0a50 (patch)
tree86465f3ed31832e2e437bbe16555805014fe5c38 /pthread_join.c
parentec10b068b42c9f80c312b75d5e4d15583cc07d2e (diff)
Initial support for Digital Mars Compiler
Diffstat (limited to 'pthread_join.c')
-rw-r--r--pthread_join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread_join.c b/pthread_join.c
index fa9c168..97cbd51 100644
--- a/pthread_join.c
+++ b/pthread_join.c
@@ -118,7 +118,7 @@ pthread_join (pthread_t thread, void **value_ptr)
if (result == 0)
{
-#if ! defined (__MINGW32__) || defined (__MSVCRT__)
+#if ! defined (__MINGW32__) || defined (__MSVCRT__) || defined (__DMC__)
if (value_ptr != NULL
&& !GetExitCodeThread (thread->threadH, (LPDWORD) value_ptr))