summaryrefslogtreecommitdiff
path: root/tests/cancel8.c
diff options
context:
space:
mode:
authorrpj <rpj>2011-03-06 10:46:44 +0000
committerrpj <rpj>2011-03-06 10:46:44 +0000
commit1183e5acfa10c7bda1dc39034d6e2fa6dec6016f (patch)
treefd5220ed96e0fef2390b72ad170b62f0516242ce /tests/cancel8.c
parent85dfeaf6133e1b74eefed26cf76c3f8631c7dd1d (diff)
64 bit compatibility (mingw64)
Diffstat (limited to 'tests/cancel8.c')
-rw-r--r--tests/cancel8.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/cancel8.c b/tests/cancel8.c
index 72b9287..7204d19 100644
--- a/tests/cancel8.c
+++ b/tests/cancel8.c
@@ -119,7 +119,9 @@ Win32thread(void * arg)
pthread_cond_wait(&CV, &CVLock);
pthread_cleanup_pop(1);
+#if ! defined (__MINGW32__) || defined (__MSVCRT__)
return 0;
+#endif
}
int
@@ -189,13 +191,13 @@ main()
/*
* Can't get a result code.
*/
- result = (int) PTHREAD_CANCELED;
+ result = (int)(size_t)PTHREAD_CANCELED;
#endif
assert(threadbag[i].self.p != NULL);
assert(pthread_kill(threadbag[i].self, 0) == ESRCH);
- fail = (result != (int) PTHREAD_CANCELED);
+ fail = (result != (int)(size_t)PTHREAD_CANCELED);
if (fail)
{