The kill UNIX BASIC program sends a UNIX signal to a D3 or UNIX process. Signals can be specified by their names, rather than by their number, and D3 processes by their port numbers instead of the UNIX PIDs.
For Windows: Not Supported
kill {-[signo|signame]} [pid|ppib] {[pid|ppib]...}
signo | Optional signal number in decimal. If not specified, SIGTERM is sent. |
signame | Optional signal name. Among the valid signal lists are: {SIG}TERM, {SIG}HUP, and {SIG}USR2. If not specified, SIGTERM is sent. |
ppib | Indicates the D3 PIB (port number), prefixed by the letter p. |
Checks that none of the specified processes have a PID of 0, which would kill all processes in the group, usually resulting in an abrupt shutdown of the D3 virtual machine. |
kill p-2This should not be the normal way to shut down a virtual machine, because it loses overflow. It can be used only to do an emergency shutdown, due to an imminent power failure, for instance.
Kills the (UNIX) process associated with port 17.
kill p17
Sends a signal, sigalrm, to the UNIX process associated with port 33 and to the UNIX process whose PID is 7143.
kill -sigalrm p33 7143
Sends a signup to port 0.
kill -1 p0
%kill() function, d3 command, PID, pid command, Port number, psr command