set_pdeathsig
Sends signal name to process when parent process terminates.
def set_pdeathsig(
name: string
) - > null
Sends signal name to process when parent process terminates.
Parameters
| Name | Type | Description |
|---|---|---|
| name | string | The name of the signal (e.g., 'SIGKILL') to be sent to the current process when its parent exits. |
Returns
| Type | Description |
|---|---|
null | Nothing is returned; the process state is modified directly via system calls. |