We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 298bab9 commit 74f70bfCopy full SHA for 74f70bf
core/thread/thread.odin
@@ -39,7 +39,8 @@ Type representing a thread handle and the associated with that thread data.
39
Thread :: struct {
40
using specific: Thread_Os_Specific,
41
flags: bit_set[Thread_State; u8],
42
- // Thread ID.
+ // Thread ID. Depending on the platform, may start out as 0 (zero) until the thread
43
+ // has had a chance to run.
44
id: int,
45
// The thread procedure.
46
procedure: Thread_Proc,
0 commit comments