sys_rt_sigpending  [kernel/signal.c]


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

Arguments

eax 176
ebx Pointer to a dword which will receive the mask of pending signals.
ecx Size of the sigset_t (see include/asm-i386/signal.h).

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