Skip to content

Commit 74f70bf

Browse files
committed
Comment
1 parent 298bab9 commit 74f70bf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/thread/thread.odin

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ Type representing a thread handle and the associated with that thread data.
3939
Thread :: struct {
4040
using specific: Thread_Os_Specific,
4141
flags: bit_set[Thread_State; u8],
42-
// Thread ID.
42+
// Thread ID. Depending on the platform, may start out as 0 (zero) until the thread
43+
// has had a chance to run.
4344
id: int,
4445
// The thread procedure.
4546
procedure: Thread_Proc,

0 commit comments

Comments
 (0)