summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/i386/sigaction.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove stray code alignment (.align 16 and .align 4 directives)Denis Vlasenko2007-07-291-2/+0
| | | | | from i386 and x86_64.
* even the hidden version of the weaks in libc (as strong in libpthread) have ↵Peter S. Mazinger2006-02-021-1/+1
| | | | to be weaks
* Get rid of missing prototype warningsPeter S. Mazinger2006-01-261-0/+1
|
* Guard the use of sigreturn as in x86_64, thx blindvtPeter S. Mazinger2006-01-251-0/+2
|
* make sigaction/raise/sigwait/siglongjmp/longjmp weak_alias, these are in ↵Peter S. Mazinger2006-01-231-1/+1
| | | | libpthread as well
* Make i386 build w/ -std=c99 (almost)Peter S. Mazinger2006-01-231-6/+6
|
* make gcc4 happy w/ hidden_def/proto, correct some typosPeter S. Mazinger2006-01-151-1/+1
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-141-4/+7
| | | | missing headers, other jump relocs removed
* Merge from NPTL branch. Bring in the remaining changes for sigaction."Steven J. Hill"2005-12-101-0/+3
|
* Try to mimic glibc sigaction, sjhill, could you please test w/ this version?Peter S. Mazinger2005-12-081-4/+4
|
* More hiding, including __mempcpyPeter S. Mazinger2005-12-031-4/+4
|
* Hide mostly used functionsPeter S. Mazinger2005-12-011-2/+2
|
* tweak restore function definitions like glibc does it to get rid of warningsMike Frysinger2005-11-211-5/+3
|
* Oops. I'd left an extra invocation of sigaction in there...Eric Andersen2003-02-031-3/+1
|
* Update sigaction syscall names to act more like glibc. Fix the x86 sigactionEric Andersen2003-01-221-0/+169
implementation such that gdb can actually debug signal handlers. Gdb behaves much better now, for example, on multi-threaded apps. -Erik