summaryrefslogtreecommitdiffstats
path: root/deps/jemalloc/msvc/test_threads/test_threads_main.cpp
blob: 0a022fba49dfd102fafa089bf2fae7fe5fea6101 (plain)
1
2
3
4
5
6
7
8
9
10
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;
}