Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

16 lines
312 B
C++

// Copyright (c) 2020-now by the Zeek Project. See LICENSE for details.
#pragma once
#include <cstdint>
namespace hilti::rt::vthread {
/** Type for the unique IDs of virtual threads. */
using ID = int64_t;
/** ID of original (main) thread. */
inline const ID Master = -1;
} // namespace hilti::rt::vthread