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::vthread {
8 
10 using ID = int64_t;
11 
13 inline const ID Master = -1;
14 
15 } // namespace hilti::rt::vthread
Definition: threading.h:7