Jeroen van Rijn 2 months ago
parent
commit
74f70bfbcb
1 changed files with 2 additions and 1 deletions
  1. 2 1
      core/thread/thread.odin

+ 2 - 1
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,