shithub: mc

ref: ff88594df5c5df6fb8f227ab8e5df3529ba6e72f
dir: /lib/thread/test/spawn.myr/

View raw version
use std
use thread

var done : int32
var capture

const main = {
	var ptr

	capture = 666
	ptr = &capture
	thread.spawn({
		std.assert(capture==666, "wrong captured value\n")
		std.assert(ptr#==666, "wrong captured ptr value\n")
		ptr# = 333
		thread.xadd(&done, 1)
	})

	while done == 0
		/* nothing */
	;;

	std.assert(capture == 333, "capture wasn't written to correctly\n")
	std.usleep(100_000)
}