1
0
forked from Alepha/Alepha

Bring in the mockination work and Truss from old.

It's all a mess -- not in the new unified form and namespace.
I need to do a big cleanup pass.
This commit is contained in:
2023-02-09 21:30:38 -08:00
parent 306d2145a3
commit fd6060be17
21 changed files with 1898 additions and 0 deletions

11
Truss/thread_common.h Normal file
View File

@ -0,0 +1,11 @@
#pragma once
#include <Alepha/Alepha.h>
#ifdef ALEPHA_USE_BOOST_THREAD_IN_TRUSS
#define ALEPHA_BOOST_THREAD inline
#define ALEPHA_STD_THREAD
#else
#define ALEPHA_BOOST_THREAD
#define ALEPHA_STD_THREAD inline
#endif