Displaying 1 result from an estimated 1 matches for "maskptr".
Did you mean:
map_ptr
2012 May 05
3
[PATCH] fix non-RT sigsuspend()
While the userspace function signature is
int sigsuspend(const sigset_t *maskptr)
there are several variants of how this is mapped into kernel
functions: one for rt_sigsuspend and several, mutually incompatible,
legacy ones, split by architectures. Before this commit, klibc did
not care about that and passed maskptr as first and only argument
to the syscall, leading to junk in...