mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-14 14:41:42 +03:00
12 lines
200 B
C++
12 lines
200 B
C++
#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;
|
|
}
|