shithub: mc

ref: 9430b39f7841e539a6ed8261a4eddb6eeb082e06
dir: /lib/thread/bld.sub/

View raw version
lib thread =
	common.myr
	hookstd.myr	# install thread hooks
	mutex.myr	# fallback, for unimplemented platforms

	#generic fallbacks
	ncpu.myr

	# linux impl of basic thread primitives
	#condvar+linux.myr
	exit+linux-x64.s
	mutex+linux.myr
	ncpu+linux.myr
	spawn+linux.myr

	# freebsd impl of thread primitives
	#condvar+freebsd.myr
	exit+freebsd-x64.s
	mutex+freebsd.myr
	ncpu+freebsd.myr
	spawn+freebsd.myr

	# netbsd impl of thread primitives
	#condvar+netbsd.myr
	#mutex+netbsd.myr
	spawn+netbsd.myr
	#ncpu+netbsd.myr
	#exit+netbsd-x64.s

	# osx impl of thread primitives
	#condvar+osx.myr
	spawn+osx.myr
	start+osx-x64.s

	# 9front impl of thread primitives
	#condvar+plan9.myr
	atomic-impl+plan9-x64.s
	mutex+plan9.myr
	ncpu+plan9.myr
	spawn+plan9.myr

	# openbsd impl of thread primitives
	exit+openbsd-x64.s
	mutex+openbsd:6.2.myr
	ncpu+openbsd.myr
	spawn+openbsd.myr

	atomic-impl+x64.s
	atomic.myr

        lib ../sys:sys
        lib ../std:std
;;

lib thrtestutil {noinst} =
	util.myr

        lib ../sys:sys
        lib ../std:std
        lib thread
;;