Zth (libzth)
zth_config.h
Go to the documentation of this file.
1 // Default zth configuration. Copy this file, and override defaults in the
2 // Config class below. Make sure it is in your include path, and zth will use
3 // your config file. For CMake, so something like this:
4 //
5 // target_include_directories(libzth BEFORE PUBLIC ${CMAKE_SOURCE_DIR}/include)
6 
7 #ifndef ZTH_CONFIG_H
8 # error Do not include this file directly, include <zth> instead.
9 #endif
10 
11 #ifdef __cplusplus
12 namespace zth {
13 
22 struct Config : public DefaultConfig {
23  // Override defaults from DefaultConfig here for your local setup.
24  // static size_t const DefaultFiberStackSize = 0x2000;
25 };
26 
27 } // namespace zth
28 #endif // __cplusplus
Definition: allocator.h:23
The configuration of Zth.
Definition: zth_config.h:22