Thread_Init

include vmm.inc

mov     edi, ThreadHandle
mov     eax, Thread_Init
VMMCall System_Control
 

Notifies a virtual device that a new thread was created. Virtual devices typically perform initialization procedures that must take place in the context of the new thread. The virtual device may modify all general registers and flags.

ThreadHandle
Handle of the new thread. This is also the current thread.

Interrupt simulation is not permitted in the new thread during this message.

See Also

VMMCreateThread, Create_Thread