summaryrefslogtreecommitdiff
path: root/arch/microblaze/bits/signal.h
AgeCommit message (Collapse)AuthorLines
2013-03-23add deprecated SIGIOT alias for SIGABRTRich Felker-0/+1
reportedly some programs (e.g. showkeys in the kbd package) use it.
2012-11-25fixup mcontext stuff to expost gregset_t/fpregset_t as appropriateRich Felker-0/+1
2012-11-23sigcontext/mcontext cleanup for arch-specific bitsRich Felker-15/+15
with these changes, the members/types of mcontext_t and related stuff should closely match the glibc definitions. unlike glibc, however, the definitions here avoid using typedefs as much as possible and work directly with the underlying types, to minimize namespace pollution from signal.h in the default (_BSD_SOURCE) profile. this is a first step in improving compatibility with applications which poke at context/register information -- mainly debuggers, trace utilities, etc. additional definitions in ucontext.h and other headers may be needed later. if feature test macros are used to request a conforming namespace, mcontext_t is replaced with an opaque structure of the equivalent size and alignment; conforming programs cannot examine its contents anyway.
2012-11-23fix up leftover, incorrect NSIG definitions in arch-specific signal.hRich Felker-1/+0
2012-11-21add back NSIG, removed from powerpc in last commit, but for all archsRich Felker-0/+2
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.
2012-09-29microblaze portRich Felker-0/+75
based on initial work by rdp, with heavy modifications. some features including threads are untested because qemu app-level emulation seems to be broken and I do not have a proper system image for testing.