Spicy
threading.h
1 // Copyright (c) 2020-2021 by the Zeek Project. See LICENSE for details.
2 
3 #pragma once
4 
5 #include <cstdint>
6 
7 namespace hilti::rt {
8 
9 namespace vthread {
10 
12 using ID = int64_t;
13 
15 inline const ID Master = -1;
16 
17 } // namespace vthread
18 
19 } // namespace hilti::rt
Definition: any.h:7