From 74f70bfbcb99dc60ef9cd3cebd5bd43b66e101f0 Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Thu, 12 Jun 2025 17:09:33 +0200 Subject: [PATCH] Comment --- core/thread/thread.odin | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/thread/thread.odin b/core/thread/thread.odin index c7fd082ac..f70471d8a 100644 --- a/core/thread/thread.odin +++ b/core/thread/thread.odin @@ -39,7 +39,8 @@ Type representing a thread handle and the associated with that thread data. Thread :: struct { using specific: Thread_Os_Specific, flags: bit_set[Thread_State; u8], - // Thread ID. + // Thread ID. Depending on the platform, may start out as 0 (zero) until the thread + // has had a chance to run. id: int, // The thread procedure. procedure: Thread_Proc,