shithub: mc

ref: a8e7cff8503ba81955e63546e7c4328cee5490c6
dir: /lib/thread/spawn+plan9.myr/

View raw version
use std
use sys

pkg thread =
	type tid = uint64

	const spawn : (fn : (-> void) -> std.result(tid, byte[:]))
;;

const spawn = {fn
	match sys.rfork(sys.Rfproc | sys.Rfmem | sys.Rfnowait)
	| 0:
		fn()
		std.exit(0)
	| -1:	-> `std.Err "unable to spawn thread"
	| thr:	-> `std.Ok (thr : tid)
	;;
}