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

import "core:os"

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