|
#define | LLFIO_HEADERS_ONLY 1 |
| Whether LLFIO is a headers only library. Defaults to 1.
|
|
#define | LLFIO_DISABLE_PATHS_IN_FAILURE_INFO not defined |
| Define to not record the current handle's path in any failure info.
|
|
#define | LLFIO_LOGGING_LEVEL 3 |
| How much detail to log. 0=disabled, 1=fatal, 2=error, 3=warn, 4=info, 5=debug, 6=all. Defaults to error level.
|
|
#define | LLFIO_LOG_TO_OSTREAM std::cerr |
| Any ostream to also log to. If NDEBUG is not defined, std::cerr is the default.
|
|
#define | LLFIO_LOG_BACKTRACE_LEVELS ((1U << 1U) | (1U << 2U) | (1U << 3U)) |
| Bit mask of which log levels should be stack backtraced which will slow those logs thirty fold or so. Defaults to (1U<<1U)|(1U<<2U)|(1U<<3U) i.e. stack backtrace on fatal, error and warn logs.
|
|
#define | LLFIO_LOGGING_MEMORY (1024 * 1024) |
| How much memory to use for the log. Defaults to 4Kb if NDEBUG defined, else 1Mb.
|
|
#define | LLFIO_EXPERIMENTAL_STATUS_CODE 0 |
| Whether to use SG14 experimental status_code instead of std::error_code
|
|
#define | LLFIO_EXCLUDE_DYNAMIC_THREAD_POOL_GROUP 1 |
|
#define | LLFIO_EXCLUDE_NETWORKING 1 |
|
#define | LLFIO_DISABLE_OPENSSL 1 |
|
#define | LLFIO_V2 (QUICKCPPLIB_BIND_NAMESPACE_VERSION(llfio_v2)) |
| The namespace configuration of this LLFIO v2. Consists of a sequence of bracketed tokens later fused by the preprocessor into namespace and C++ module names.
|
|
#define | LLFIO_V2_NAMESPACE llfio_v2_xxx |
| The namespace of this LLFIO v2 which will be some unknown inline namespace starting with v2_ inside the boost::llfio namespace.
|
|
#define | LLFIO_V2_NAMESPACE_BEGIN |
| Expands into the appropriate namespace markup to enter the LLFIO v2 namespace. More...
|
|
#define | LLFIO_V2_NAMESPACE_EXPORT_BEGIN |
| Expands into the appropriate namespace markup to enter the C++ module exported LLFIO v2 namespace. More...
|
|
#define | LLFIO_V2_NAMESPACE_END } |
| Expands into the appropriate namespace markup to exit the LLFIO v2 namespace.
|
|
#define | LLFIO_DECL |
|
#define | LLFIO_THREAD_LOCAL_IS_CXX11 QUICKCPPLIB_THREAD_LOCAL_IS_CXX11 |
|
#define | LLFIO_THREAD_LOCAL QUICKCPPLIB_THREAD_LOCAL |
|
#define | LLFIO_NODISCARD QUICKCPPLIB_NODISCARD |
|
#define | LLFIO_TEMPLATE(...) QUICKCPPLIB_TEMPLATE(__VA_ARGS__) |
|
#define | LLFIO_TREQUIRES(...) QUICKCPPLIB_TREQUIRES(__VA_ARGS__) |
|
#define | LLFIO_TEXPR(...) QUICKCPPLIB_TEXPR(__VA_ARGS__) |
|
#define | LLFIO_TPRED(...) QUICKCPPLIB_TPRED(__VA_ARGS__) |
|
#define | LLFIO_GLUE2(x, y) x##y |
|
#define | LLFIO_GLUE(x, y) LLFIO_GLUE2(x, y) |
|
#define | LLFIO_UNIQUE_NAME LLFIO_GLUE(__t, __COUNTER__) |
|
#define | LLFIO_MAKE_FREE_FUNCTION |
|
#define | LLFIO_HEADERS_ONLY_FUNC_SPEC inline |
| Expands into the appropriate markup to declare an extern function exported from the LLFIO DLL if not building headers only.
|
|
#define | LLFIO_HEADERS_ONLY_MEMFUNC_SPEC inline |
| Expands into the appropriate markup to declare a class member function exported from the LLFIO DLL if not building headers only.
|
|
#define | LLFIO_HEADERS_ONLY_VIRTUAL_SPEC inline virtual |
| Expands into the appropriate markup to declare a virtual class member function exported from the LLFIO DLL if not building headers only.
|
|
|
template<class T , class U , typename std::enable_if<(std::is_unsigned< T >::value &&!std::is_same< std::decay_t< U >, std::nullptr_t >::value), bool >::type = true> |
T | llfio_v2_xxx::detail::unsigned_integer_cast (U &&v) |
|
template<class T , typename std::enable_if<(std::is_unsigned< T >::value), bool >::type = true> |
T | llfio_v2_xxx::detail::unsigned_integer_cast (std::nullptr_t) |
|
template<class T , class U , typename std::enable_if<(std::is_unsigned< T >::value), bool >::type = true> |
T | llfio_v2_xxx::detail::unsigned_integer_cast (U *v) |
|
Configures a compiler environment for LLFIO header and source code.