summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps
Commit message (Collapse)AuthorAgeFilesLines
...
* Ricard Wanderlof writes:Mike Frysinger2006-01-261-33/+41
| | | | | | | | | Here's a patch to avoid a name clash between include/bits/byteswap.h and the kernel include file <linux/byteorder/swab.h> . (Normally both aren't included by the same file, but we've had one case where a conflict occurred at link time, thus necessitating the patch). I've also taken the opportunity to make the general structure and namespace of the file similar to the corresponding file for other archs.
* Get rid of missing prototype warningsPeter S. Mazinger2006-01-2658-28/+99
|
* Really define, not undefine the crash statement..."Jan-Benedict Glaw"2006-01-261-1/+1
|
* Allow for targets that don't know about signed zero floats."Jan-Benedict Glaw"2006-01-2623-0/+110
|
* Correct mips, does mips ever be similar to others ;-(Peter S. Mazinger2006-01-261-28/+27
|
* Guard the use of sigreturn as in x86_64, thx blindvtPeter S. Mazinger2006-01-251-0/+2
|
* Use #define __NR_vfork __NR_fork consistentlyPeter S. Mazinger2006-01-254-24/+13
|
* first (broken) pass at updating to new crt styleMike Frysinger2006-01-242-68/+74
|
* __longjmp/__libc_longjmp as noreturnPeter S. Mazinger2006-01-241-2/+2
|
* fork/vfork weak in libc, strong in libpthreadPeter S. Mazinger2006-01-2421-114/+146
|
* - use keywords __asm__ and __inline__ c99.Bernhard Reutner-Fischer2006-01-241-10/+10
|
* Move threads header to proper locationPeter S. Mazinger2006-01-241-58/+0
|
* Convert all the strong_aliases to weak that are cancelable in libpthreadPeter S. Mazinger2006-01-2418-39/+39
|
* Use __typeof for __longjmp, remove alias to longjmp for cris, should be ↵Peter S. Mazinger2006-01-243-3/+2
| | | | covered by common/longjmp.c
* cleanup and use the style of other *64 funcsMike Frysinger2006-01-232-24/+10
|
* kill off redefined warningsMike Frysinger2006-01-231-0/+29
|
* add support for arch_prctl() (only used on x86_64 atm)Mike Frysinger2006-01-231-0/+14
|
* fix building with gcc4Mike Frysinger2006-01-231-24/+20
|
* longjmp missed, remove sh version, it's the same as the generic onePeter S. Mazinger2006-01-233-51/+3
|
* make sigaction/raise/sigwait/siglongjmp/longjmp weak_alias, these are in ↵Peter S. Mazinger2006-01-234-4/+4
| | | | libpthread as well
* Try to correct stat64/stat issue, vapier please check on 64bit archPeter S. Mazinger2006-01-231-3/+6
|
* Make i386 build w/ -std=c99 (almost)Peter S. Mazinger2006-01-234-12/+12
|
* Add __longjmp prototypePeter S. Mazinger2006-01-231-1/+1
|
* Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵Peter S. Mazinger2006-01-2231-300/+104
| | | | is a useless attempt
* grab alpha version of mman.h from glibcMike Frysinger2006-01-221-0/+116
|
* import syscall from glibcMike Frysinger2006-01-212-2/+73
|
* fix building on 64bit hostsMike Frysinger2006-01-211-0/+7
|
* fix building on 64bit hostsMike Frysinger2006-01-213-0/+3
|
* Remove old commentPeter S. Mazinger2006-01-211-2/+0
|
* Another __sigprocmaskPeter S. Mazinger2006-01-211-3/+1
|
* Remove other __sigprocmask occurences, even if unused, remove unsed filePeter S. Mazinger2006-01-213-59/+4
|
* Correct sigprocmask undefined for sh and remove the useless __sigprocmask weakPeter S. Mazinger2006-01-212-6/+3
|
* Convert l*seek too to use __typeofPeter S. Mazinger2006-01-212-2/+2
|
* Use __typeof instead of adding full prototypesPeter S. Mazinger2006-01-214-5/+5
|
* need prototype to fix sigaction warningsMike Frysinger2006-01-201-0/+3
|
* grab syscall macros from the kernelMike Frysinger2006-01-201-7/+185
|
* .set doesnt work on alphaMike Frysinger2006-01-201-1/+1
|
* need sys/syscall.h for __NR_fork defineMike Frysinger2006-01-201-0/+1
|
* fix building on alphaMike Frysinger2006-01-201-6/+7
|
* need unistd.h for brk prototypeMike Frysinger2006-01-201-0/+1
|
* disable deprecated warnings for some filesMike Frysinger2006-01-201-0/+1
|
* move the sh64 code out of the sh headerMike Frysinger2006-01-202-5/+2
|
* Remove HAVE_ELFPeter S. Mazinger2006-01-199-21/+6
|
* Get rid of *_SYMBOL_PREFIXPeter S. Mazinger2006-01-194-4/+4
|
* Change to sane defaultsPeter S. Mazinger2006-01-1922-110/+222
|
* Remove MMAP_HAS_6_ARGSPeter S. Mazinger2006-01-191-2/+0
|
* update syscall macros so both ldso and libc can use themMike Frysinger2006-01-191-137/+99
|
* move a bunch of arch-specific checks out of common files and into an arch ↵Mike Frysinger2006-01-1925-9/+756
| | | | specific header file to make porting/updates a lot easier
* Correct unimportant typoPeter S. Mazinger2006-01-191-1/+1
|
* Joseph S. Myers writes:Eric Andersen2006-01-191-4/+6
| | | | | | | | | libc/sysdeps/linux/arm/ioperm.c on trunk fails to compile for me because of no declaration of ioperm at the point where libc_hidden_proto(ioperm) requires one. Including <sys/io.h> to get the declaration then shows up that various types are inconsistent with that header; this patch fixes things so that file compiles.