diff options
| author | Aron Xu <aron@debian.org> | 2012-09-18 01:15:22 +0800 |
|---|---|---|
| committer | Aron Xu <aron@debian.org> | 2012-09-18 01:15:22 +0800 |
| commit | f660f9d2924c7549bc87e7f9b4ece7c9727b3682 (patch) | |
| tree | 816b3ef0e89d1601803b5dc1b90b50ade0567043 /testThreadsWin32.c | |
| parent | d7372d053bbd1d58216fbb04d1771ffa4cc3e624 (diff) | |
| download | libxml2-upstream/2.9.0.tar.gz | |
Imported Upstream version 2.9.0upstream/2.9.0
Diffstat (limited to 'testThreadsWin32.c')
| -rw-r--r-- | testThreadsWin32.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testThreadsWin32.c b/testThreadsWin32.c index 6ed702e..3d1a5ba 100644 --- a/testThreadsWin32.c +++ b/testThreadsWin32.c @@ -104,7 +104,7 @@ main() for (i = 0; i < num_threads; i++) { DWORD useless; - tid[i] = CreateThread(NULL, 0, + tid[i] = CreateThread(NULL, 0, thread_specific_data, testfiles[i], 0, &useless); if (tid[i] == NULL) { @@ -113,7 +113,7 @@ main() } } - if (WaitForMultipleObjects (num_threads, tid, TRUE, INFINITE) == WAIT_FAILED) + if (WaitForMultipleObjects (num_threads, tid, TRUE, INFINITE) == WAIT_FAILED) perror ("WaitForMultipleObjects failed"); for (i = 0; i < num_threads; i++) @@ -129,7 +129,7 @@ main() xmlCatalogCleanup(); for (i = 0; i < num_threads; i++) { - if (results[i] != (DWORD) Okay) + if (results[i] != (DWORD) Okay) printf("Thread %d handling %s failed\n", i, testfiles[i]); } } |
