aboutsummaryrefslogtreecommitdiff
path: root/core/sync/sync2/primitives_openbsd.odin
blob: ef122b02e109933135ae90ae902e65294f332c51 (plain)
1
2
3
4
5
6
7
8
9
//+build openbsd
//+private
package sync2

import "core:os"

_current_thread_id :: proc "contextless" () -> int {
	return os.current_thread_id()
}