mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-14 22:51:50 +03:00
12 lines
198 B
C++
12 lines
198 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;
|
|
}
|