Prototype for TProcess.OnForkEvent event handler.
Source position: process.pp line 79
type TProcessForkEvent = procedure( |
Sender: TObject |
) of object; |
Sender |
|
TProcess instance that caused the fork. |
TProcessForkEvent is the prototype for TProcess.OnForkEvent. It is a simple procedure, as the idea is that only process-global things should be performed in this event handler.
|
Event triggered after fork occurred on Linux. |