about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* fix argument type error on wcwidth functionRich Felker2012-08-021-2/+2
* fix missing static in getusershell (namespace pollution)Rich Felker2012-08-021-1/+1
* optimize mempcpy to minimize need for data saved across the callRich Felker2012-07-311-2/+1
* optimize arm setjmp/longjmp register saving/loadingRich Felker2012-07-272-6/+2
* save AT_HWCAP from auxv for subsequent use in machine-specific codeRich Felker2012-07-273-0/+4
* retry on cas failures in sem_trywaitRich Felker2012-07-241-2/+2
* add ioperm/iopl syscallsRich Felker2012-07-232-0/+18
* add splice and vmsplice syscallsRich Felker2012-07-232-0/+16
* add extended attributes syscallsRich Felker2012-07-231-0/+47
* add pipe2 syscallRich Felker2012-07-231-0/+8
* remove scanf dependency from getaddrinfo /etc/services supportRich Felker2012-07-221-5/+4
* getaddrinfo /etc/services lookup supportRich Felker2012-07-221-3/+16
* add floating point register saving/restoring to mips setjmp/longjmpRich Felker2012-07-222-1/+29
* make getservby*_r return error code rather than -1 (and using errno)Rich Felker2012-07-222-19/+35
* fix logic error for skipping failed interfaces in if_nameindexRich Felker2012-07-211-8/+7
* fix getservby*() with null pointer for protocol argumentRich Felker2012-07-142-0/+8
* avoid blx instruction which does not exist on armv4t or armv4Rich Felker2012-07-141-1/+2
* make dynamic linker tell the debugger its own pathnameRich Felker2012-07-131-0/+5
* sigsetjmp asm for mipsRich Felker2012-07-121-0/+27
* workaround another sendmsg kernel bug on 64-bit machinesRich Felker2012-07-121-0/+13
* fix several locks that weren't updated right for new futex-based __lockRich Felker2012-07-124-10/+10
* fix pthread_kill unlockingRich Felker2012-07-121-1/+1
* fix breakage of x86_64 sigaction from recent changes for mipsRich Felker2012-07-121-1/+1
* fix potential race condition in detached threadsRich Felker2012-07-112-4/+10
* mips clone: don't free stack space used to copy argRich Felker2012-07-111-1/+0
* fix mips clone() on real linux kernelRich Felker2012-07-111-4/+7
* fix clone() on mips (args were in wrong order)Rich Felker2012-07-111-3/+2
* first attempt at making threads work on mipsRich Felker2012-07-113-0/+67
* generic c version of __set_thread_area for archs where it worksRich Felker2012-07-111-1/+5
* initial version of mips (o32) port, based on work by Richard Pennington (rdp)Rich Felker2012-07-115-0/+105
* remove unused var in new sigaction codeRich Felker2012-07-111-1/+1
* use unsigned bitmask for consistency in ksigactionRich Felker2012-07-111-1/+1
* fix breakage from last commit: forgot to include ksigaction.hRich Felker2012-07-111-0/+6
* changes to kernel sigaction struct handling in preparation for mips portRich Felker2012-07-112-14/+17
* make dynamic linker depend on -DSHARED not -fPICRich Felker2012-07-111-1/+1
* fix lots of breakage on dlopen, mostly with explicit pathnamesRich Felker2012-07-111-14/+21
* fix dlsym RTLD_NEXT supportRich Felker2012-07-071-1/+3
* putw is supposed to return 0 (not the value written) on successRich Felker2012-07-041-1/+1
* make sure getw/putw agree with prototypes by defining _GNU_SOURCERich Felker2012-07-042-0/+2
* jmp_buf overhaul fixing several issuesRich Felker2012-07-032-10/+7
* fix sigsetjmp on arm (needs asm)Rich Felker2012-07-021-0/+13
* fix missing function declarations for __stdio_exitRich Felker2012-07-022-0/+4
* fix missing prototype and simplify sincosl on ld64 archsRich Felker2012-07-021-4/+2
* fix invalid implicit pointer conversion in ld64 modflRich Felker2012-07-021-1/+1
* replace old and ugly crypt implementationRich Felker2012-06-293-2574/+1055
* add process_vm_readv and process_vm_writev syscall wrappersRich Felker2012-06-231-0/+13
* proper error handling for fcntl F_GETOWN on modern kernelsRich Felker2012-06-201-1/+9
* math: fix fma bug on x86 (found by Bruno Haible with gnulib)nsz2012-06-201-2/+10
* fix broken wcwidth tablesRich Felker2012-06-201-7/+8
* support ld80 pseudo-denormal invalid bit patterns; treat them as nanRich Felker2012-06-201-2/+5