mirror of
https://github.com/fluencelabs/redis
synced 2025-06-26 23:41:33 +00:00
.github
deps
hiredis
jemalloc
bin
build-aux
doc
include
m4
msvc
projects
test_threads
test_threads.cpp
test_threads.h
test_threads_main.cpp
ReadMe.txt
jemalloc_vc2015.sln
jemalloc_vc2017.sln
scripts
src
test
.appveyor.yml
.autom4te.cfg
.gitattributes
.gitignore
.travis.yml
COPYING
ChangeLog
INSTALL.md
Makefile.in
README
TUNING.md
VERSION
autogen.sh
config.stamp.in
configure
configure.ac
jemalloc.pc.in
run_tests.sh
linenoise
lua
Makefile
README.md
update-jemalloc.sh
src
tests
utils
.gitignore
00-RELEASENOTES
BUGS
CONTRIBUTING
COPYING
INSTALL
MANIFESTO
Makefile
README.md
TLS.md
redis.conf
runtest
runtest-cluster
runtest-moduleapi
runtest-sentinel
sentinel.conf
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;
|
|
}
|