mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 09:24:33 +00:00
16 lines
281 B
Odin
16 lines
281 B
Odin
package thread
|
|
|
|
import "core:runtime"
|
|
|
|
Thread_Proc :: #type proc(^Thread);
|
|
|
|
Thread :: struct {
|
|
using specific: Thread_Os_Specific,
|
|
procedure: Thread_Proc,
|
|
data: rawptr,
|
|
user_index: int,
|
|
|
|
init_context: runtime.Context,
|
|
use_init_context: bool,
|
|
}
|