summaryrefslogtreecommitdiffstats
path: root/deps/jemalloc/msvc/test_threads/test_threads_main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'deps/jemalloc/msvc/test_threads/test_threads_main.cpp')
-rw-r--r--deps/jemalloc/msvc/test_threads/test_threads_main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/deps/jemalloc/msvc/test_threads/test_threads_main.cpp b/deps/jemalloc/msvc/test_threads/test_threads_main.cpp
new file mode 100644
index 0000000..0a022fb
--- /dev/null
+++ b/deps/jemalloc/msvc/test_threads/test_threads_main.cpp
@@ -0,0 +1,11 @@
+#include "test_threads.h"
+#include <future>
+#include <functional>
+#include <chrono>
+
+using namespace std::chrono_literals;
+
+int main(int argc, char** argv) {
+ int rc = test_threads();
+ return rc;
+}