aboutsummaryrefslogtreecommitdiff
path: root/arch/powerpc/bits/signal.h (follow)
Commit message (Expand)AuthorAgeFilesLines
* fix signal.h breakage from moving stack_t to arch-specific bits•••in the previous changes, I missed the fact that both the prototype of the sigaltstack function and the definition of ucontext_t depend on stack_t. Rich Felker2014-03-181-6/+6
* move signal.h definition of stack_t to arch-specific bits•••it's different at least on mips. mips version will be fixed in a separate commit to show the change. Rich Felker2014-03-181-0/+6
* add deprecated SIGIOT alias for SIGABRT•••reportedly some programs (e.g. showkeys in the kbd package) use it. Rich Felker2013-03-231-1/+1
* fixup mcontext stuff to expost gregset_t/fpregset_t as appropriateRich Felker2012-11-251-1/+1
* fix powerpc ucontext, again..•••it should now really match the kernel. some of the removed padding corresponded to the difference between user and kernel sigset_t. the space at the end was redundant with the uc_mcontext member and seems to have been added as a result of misunderstanding glibc's definition versus the kernel's. Rich Felker2012-11-231-5/+0
* remove stuff that doesn't belong in powerpc 32-bit sigcontext•••these fields were wrongly copied from the kernel's ppc64 struct def Rich Felker2012-11-231-4/+0
* more ppc signal.h typedef order fixesRich Felker2012-11-211-13/+13
* fix misordered typedefs in ppc signal.hRich Felker2012-11-211-2/+2
* add back NSIG, removed from powerpc in last commit, but for all archs•••unlike the previous definition, NSIG/_NSIG is supposed to be one more than the highest signal number. adding this will allow simplifying libc-internal code that makes signal-related syscalls, which can be done as a later step. some apps might use it too; while this usage is questionable, it's at least not insane. Rich Felker2012-11-211-0/+2
* make powerpc signal.h namespace-clean for posix/isoc•••also handle the non-GNUC case where alignment attribute is not available by simply omitting it. this will not cause problems except for inclusion of mcontex_t/ucontext_t in application-defined structures, since the natural alignment of the uc_mcontext member relative to the start of ucontext_t is already correct. and shame on whoever designed this for making it impossible to satisfy the ABI requirements without GNUC extensions. Rich Felker2012-11-211-19/+32
* fix invalid usage of mcontext_t in powerpc signal.hrofl0r2012-11-211-1/+1
* PPC port cleaned up, static linking works well now.rofl0r2012-11-131-0/+103