[Overview][Types][Classes][Procedures and functions][Variables][Index] |
Prototype for TProcess.OnForkEvent event handler
Source position: process.pp line 45
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 |