sys_sigpending  [kernel/signal.c]


Returns the set of signals that are pending for delivery to the calling thread (i.e., the signals which have been raised while blocked).

Arguments

eax 73
ebx Pointer to a dword which will receive the mask of pending signals.

Return values

If the system call succeeds the return value is 0.
If the system call fails the return value is one of the following errno values:

-EFAULT ebx points to memory which is not a valid part of the process address space.

Remarks

n/a

Compatibility

n/a