Thread System 0.3.1
High-performance C++20 thread pool with work stealing and DAG scheduling
Loading...
Searching...
No Matches
thread.cppm
Go to the documentation of this file.
1// BSD 3-Clause License
2// Copyright (c) 2025, 🍀☀🌕🌥 🌊
3// See the LICENSE file in the project root for full license information.
4
31export module kcenon.thread;
32
33import kcenon.common;
34
35// Tier 1: Core thread management
36export import :core;
37
38// Tier 2: Queue implementations
39export import :queue;
40
41export namespace kcenon::thread {
42
47 static constexpr int major = 0;
48 static constexpr int minor = 3;
49 static constexpr int patch = 0;
50 static constexpr int tweak = 0;
51 static constexpr const char* string = "0.3.0.0";
52 static constexpr const char* module_name = "kcenon.thread";
53};
54
55} // namespace kcenon::thread
Core threading foundation of the thread system library.
Definition thread_impl.h:17
Version information for thread_system module.
Definition thread.cppm:46
static constexpr int minor
Definition thread.cppm:48
static constexpr const char * module_name
Definition thread.cppm:52
static constexpr int major
Definition thread.cppm:47
static constexpr int tweak
Definition thread.cppm:50
static constexpr int patch
Definition thread.cppm:49