Benjamin Dasnois schrieb: > Following my project to create a bridge from FUSE to haXe, I still > have a problem : when my C callback is called and in turns calls the > haXe/Neko code it works as expected but if the C callback is fired > many times quickly, the call to the haXe/Neko code fails... > > Is it a known issue? >
can you be more precise, where it fails ? I have a project running, where I call neko code from my delphi code and vice versa many times in a multi threaded server (I use neko .n modules as plugins in my server and the .n modules call again delphi code for some calculations). The only problem I had, is when the stack is low at generation of the vm, that the subsequent call to vallCallEx will fail. I use now a minimum stack size of 2MB and the code runs stable. hope that helps. Adrian. -- Neko : One VM to run them all (http://nekovm.org)
