summaryrefslogtreecommitdiff
path: root/deps/jemalloc/test/include/test/thd.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/jemalloc/test/include/test/thd.h')
-rw-r--r--deps/jemalloc/test/include/test/thd.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/deps/jemalloc/test/include/test/thd.h b/deps/jemalloc/test/include/test/thd.h
deleted file mode 100644
index 47a51262e..000000000
--- a/deps/jemalloc/test/include/test/thd.h
+++ /dev/null
@@ -1,9 +0,0 @@
-/* Abstraction layer for threading in tests. */
-#ifdef _WIN32
-typedef HANDLE thd_t;
-#else
-typedef pthread_t thd_t;
-#endif
-
-void thd_create(thd_t *thd, void *(*proc)(void *), void *arg);
-void thd_join(thd_t thd, void **ret);