ref: 2ffd051d75978386e2c63b5d0812dd9be982c38c
dir: /lib/thread/fsbase+openbsd.myr/
use sys
use "types"
pkg thread =
pkglocal const setfsbase : (h : tlshdr# -> void)
pkglocal const getfsbase : (-> tlshdr#)
;;
const setfsbase = {h
sys.__set_tcb((h : void#))
}
const getfsbase = {
-> (sys.__get_tcb() : tlshdr#)
}