The process id number.
The signal number, normally one of the built-in signal values.
This process functions similarly to the kill shell command. Signals and their descriptions can be found in signal.
Process 1:
Gamma> getpid();
8299
Gamma>
Process 2:
Gamma> kill(8299,9);
t
Gamma>
Process 1:
Gamma> Killed
Process 3:
Gamma> getpid();
9041
Gamma> kill (9041,14);
Alarm clockSee the Starting Programs section of the Common Functions chapter (Tutorial One), or the Kill a Child Process section or the Stop Processes section of the Common Functions for Any Program chapter (Tutorial Two) in the Cogent Tools Demo and Tutorials book for examples of this function used in context.