aboutsummaryrefslogtreecommitdiff
path: root/core/sync/primitives_wasm.odin
blob: f8d9ab657eed97153144668ee6cf9cc592060d38 (plain)
1
2
3
4
5
6
7
8
//+private
//+build wasm32, wasm64p32
package sync

_current_thread_id :: proc "contextless" () -> int {
	// TODO(bill): _current_thread_id for wasm32
	return 0
}