Expand description
§Signal Bitmap Interpreter
A simple library to interpret signal bitmaps for a process, read
from /proc/<pid>/status
. Supported signal bitmaps include pending
signals (SigPnd
), shared pending signals (ShdPnd
), blocked signals
(SigBlk
), ignored signals (SigIgn
), and caught signals (SigCgt
).
Structs§
- SigBitmap
Args - Interpret signal bitmaps for a process.
Enums§
- Bitmap
Type - The type of signal bitmap.
Functions§
- interpret
- Returns a list of signals interpreted from the specified bitmap.
- sig_
bitmap - Displays the formatted string representaion of the specified type of signal bitmap for a given process. This function outputs an empty map if the process doesn’t exist or if there is an error interpreting the signal bitmap.