Dispatch Queue
Dispatch Queue / Thread Pool implementation for C++11 with built-in C++20 coroutine support
 
Loading...
Searching...
No Matches
task_tag.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <cstddef>
4#include <limits>
5
6namespace dispatch_queue {
7
12using task_tag = int;
13
17static constexpr task_tag NULL_TAG = std::numeric_limits<task_tag>::min();
18
19}
Definition dispatch_queue.hpp:19
int task_tag
Definition task_tag.hpp:12