Displaying 1 result from an estimated 1 matches for "ignored2".
Did you mean:
ignored
2012 May 05
3
[PATCH] fix non-RT sigsuspend()
...is commit, klibc did
not care about that and passed maskptr as first and only argument
to the syscall, leading to junk in other argument slots. There are
several non-RT variants:
1) int sigsuspend(sigset_t mask)
2) long sigsuspend(sigset_t mask)
3) int sigsuspend(int ignored1,
unsigned long ignored2, sigset_t mask)
4) int sigsuspend(int ignored1, int ignored2, sigset_t mask)
5) long sigsuspend(int ignored1, int ignored2, sigset_t mask)
Note how none of these accepts a pointer, they all want the value.
6) (none at all, only RT exists)
Breakdown by architectures:
alpha (2+6) not affected:...