> Ok i've reproduced (for those not on the haXe list - orginal problem > outlined at bottom of the mail) . I've narrowed the problem down also, > simply calling > > val_print();
Ok, this is perfectly normal : DO NOT create a thread by yourself. Instead include <neko_vm.h> and use the neko_thread_create method (see usage example in neko/libs/std/thread.c) You might also prefer to let haXe handle the thread creation, which is most easier and more flexible when things needs to get modified. Nicolas -- Neko : One VM to run them all (http://nekovm.org)
