set flag to allow forced unload of a running VM

required to prevent a client from exiting if the server disconnects (bug 3585)
This commit is contained in:
Ludwig Nussel 2008-04-06 12:59:35 +00:00
parent 8bcb33892e
commit 43ac1eca6a
3 changed files with 21 additions and 2 deletions

View file

@ -325,6 +325,8 @@ vm_t *VM_Create( const char *module, intptr_t (*systemCalls)(intptr_t *),
void VM_Free( vm_t *vm );
void VM_Clear(void);
void VM_Forced_Unload_Start(void);
void VM_Forced_Unload_Done(void);
vm_t *VM_Restart( vm_t *vm );
intptr_t QDECL VM_Call( vm_t *vm, int callNum, ... );