11 lines
177 B
Go
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)
|
|
}
|