
Provides an implementation of preempting green threads in pure PIR.

include 'green_threads.pir'
gt_init()
gt_spawn(sub1, arg1)
gt_spawn(sub2, arg1, arg2)
Initialize green threads so they'll actually work.
Asyncronously run my_sub(...)
Exit the current green thread.