Files
ollama/x/internal/mlxthread/threadid_darwin_test.go
2026-05-22 17:19:10 +08:00

11 lines
177 B
Go

//go:build darwin
package mlxthread
import "syscall"
func currentThreadID() uint64 {
id, _, _ := syscall.RawSyscall(syscall.SYS_THREAD_SELFID, 0, 0, 0)
return uint64(id)
}