summaryrefslogtreecommitdiff
path: root/tests/self2.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/self2.c')
-rw-r--r--tests/self2.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/self2.c b/tests/self2.c
index 51cc129..461e5f9 100644
--- a/tests/self2.c
+++ b/tests/self2.c
@@ -1,6 +1,4 @@
#include <pthread.h>
-/* Hack. Peer into implementation details. */
-#include <implement.h>
#include <assert.h>
#include <stdio.h>
@@ -13,7 +11,7 @@ entry(void * arg)
ordinarily bad, m'kay? */
pthread_t t = pthread_self();
- printf("my thread is %lx\n", t->win32handle);
+ printf("my thread is %lx\n", t->threadH);
return arg;
}