mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-29 02:40:05 +00:00
Comment
This commit is contained in:
@@ -39,7 +39,8 @@ Type representing a thread handle and the associated with that thread data.
|
|||||||
Thread :: struct {
|
Thread :: struct {
|
||||||
using specific: Thread_Os_Specific,
|
using specific: Thread_Os_Specific,
|
||||||
flags: bit_set[Thread_State; u8],
|
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,
|
id: int,
|
||||||
// The thread procedure.
|
// The thread procedure.
|
||||||
procedure: Thread_Proc,
|
procedure: Thread_Proc,
|
||||||
|
|||||||
Reference in New Issue
Block a user