summaryrefslogtreecommitdiff
path: root/deps/jemalloc/test/src/thd.c
diff options
context:
space:
mode:
authorYoav Steinberg <yoav@monfort.co.il>2021-10-10 18:03:38 +0300
committerYoav Steinberg <yoav@monfort.co.il>2021-10-10 18:03:38 +0300
commit4a884343f5935f7d470ab0ce013a421f119cfb3a (patch)
treeb65b2ddf334d971d42a297b11c3f2022353a2a69 /deps/jemalloc/test/src/thd.c
parent7ff7536e2c55a8a624eb52ffc35c08441425e683 (diff)
downloadredis-4a884343f5935f7d470ab0ce013a421f119cfb3a.tar.gz
Delete old jemalloc before pulling in subtree.
Diffstat (limited to 'deps/jemalloc/test/src/thd.c')
-rw-r--r--deps/jemalloc/test/src/thd.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/deps/jemalloc/test/src/thd.c b/deps/jemalloc/test/src/thd.c
deleted file mode 100644
index 9a15eabbf..000000000
--- a/deps/jemalloc/test/src/thd.c
+++ /dev/null
@@ -1,34 +0,0 @@
-#include "test/jemalloc_test.h"
-
-#ifdef _WIN32
-void
-thd_create(thd_t *thd, void *(*proc)(void *), void *arg) {
- LPTHREAD_START_ROUTINE routine = (LPTHREAD_START_ROUTINE)proc;
- *thd = CreateThread(NULL, 0, routine, arg, 0, NULL);
- if (*thd == NULL) {
- test_fail("Error in CreateThread()\n");
- }
-}
-
-void
-thd_join(thd_t thd, void **ret) {
- if (WaitForSingleObject(thd, INFINITE) == WAIT_OBJECT_0 && ret) {
- DWORD exit_code;
- GetExitCodeThread(thd, (LPDWORD) &exit_code);
- *ret = (void *)(uintptr_t)exit_code;
- }
-}
-
-#else
-void
-thd_create(thd_t *thd, void *(*proc)(void *), void *arg) {
- if (pthread_create(thd, NULL, proc, arg) != 0) {
- test_fail("Error in pthread_create()\n");
- }
-}
-
-void
-thd_join(thd_t thd, void **ret) {
- pthread_join(thd, ret);
-}
-#endif