Signal

Entries

Link copied to clipboard

Interrupt signal, usually triggered by pressing Ctrl+C. This signal is commonly used to safely terminate the current process.

Link copied to clipboard

Quit signal, typically triggered by pressing Ctrl+\. Requests the immediate termination of the process, potentially creating a core dump for debugging purposes.

Link copied to clipboard

Terminal stop signal, generally triggered by pressing Ctrl+Z. Suspends (pauses) the current process, which can be resumed later.

Link copied to clipboard

Continue signal. Used to resume a process that was previously suspended by a TSTP signal.

Link copied to clipboard

Window change signal. Sent by the terminal when the window size changes,

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.