about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* fix ptsname_r to conform to the upcoming posix requirementsRich Felker2012-06-202-4/+13
* fix fwrite return value when full write does not succeedRich Felker2012-06-201-1/+1
* avoid cancellation in pcloseRich Felker2012-06-201-3/+4
* fix invalid memory access in pcloseRich Felker2012-06-201-1/+2
* make popen cancellation-safeRich Felker2012-06-201-0/+7
* popen: handle issues with fd0/1 being closedRich Felker2012-06-201-3/+3
* duplocale: don't crash when called with LC_GLOBAL_LOCALERich Felker2012-06-201-1/+1
* make strerror_r behave nicer on failureRich Felker2012-06-201-2/+8
* fix another oob pointer arithmetic issue in printf floating pointRich Felker2012-06-201-1/+1
* minor perror behavior fixRich Felker2012-06-201-1/+1
* fix localeconv values and implementationRich Felker2012-06-191-15/+28
* fix mistake in length test in getlogin_rRich Felker2012-06-191-1/+1
* fix dummied-out fsyncRich Felker2012-06-191-2/+1
* fix dummied-out fdatasyncRich Felker2012-06-191-1/+1
* fix pointer overflow bug in floating point printfRich Felker2012-06-191-3/+3
* add vhangup syscall wrapperRich Felker2012-06-191-0/+8
* add new stdio extension functions to make gnulib happyRich Felker2012-06-191-0/+24
* stdio: handle file position correctly at program exitRich Felker2012-06-194-6/+40
* minor cleanup in fflushRich Felker2012-06-191-5/+1
* remove flush hook cruft that was never used from stdioRich Felker2012-06-193-5/+1
* fix multiple iconv bugs reading utf-16/32 and wchar_tRich Felker2012-06-181-8/+8
* fix iconv dest utf-16: unavailable chars must be replaced; EILSEQ is wrongRich Felker2012-06-181-2/+2
* fix erroneous utf-16 encoding with surrogates in iconvRich Felker2012-06-181-0/+1