Age | Commit message (Expand) | Author | Lines |
2012-02-06 | add support for init/finit (constructors and destructors) | Rich Felker | -7/+75 |
2012-02-06 | add deprecated (removed from posix) [efg]cvt() functions | Rich Felker | -0/+55 |
2012-02-03 | include dummied-out dlopen and dlsym functions for static binaries | Rich Felker | -1/+10 |
2012-02-02 | improve gcc wrapper to support -nostdlib, -nostartfiles | Rich Felker | -1/+1 |
2012-02-02 | make stdio open, read, and write operations cancellation points | Rich Felker | -5/+28 |
2012-02-01 | make passwd/group functions safe against cancellation in stdio | Rich Felker | -6/+35 |
2012-02-01 | apparently gnu caddr_t is supposed to be char *, not unsigned long | Rich Felker | -1/+1 |
2012-02-01 | fix utmp.h mess, try 2 | Rich Felker | -1/+1 |
2012-01-31 | fix previous utmp.h junk commit | Rich Felker | -1/+1 |
2012-01-31 | add some missing junk in utmp.h | Rich Felker | -0/+4 |
2012-01-29 | add fgetpwent (nonstandard function) | Rich Felker | -0/+14 |
2012-01-28 | add linux setfs[ug]id syscall wrappers | Rich Felker | -0/+36 |
2012-01-26 | remove useless "extern" keywords in headers | Rich Felker | -3/+3 |
2012-01-25 | fix typo in FPE_FLTUND definition, signal.h | Rich Felker | -1/+1 |
2012-01-24 | add MIN/MAX macros to sys/param.h | Rich Felker | -0/+5 |
2012-01-24 | add legacy futimes and lutimes functions | Rich Felker | -0/+28 |
2012-01-24 | make gcc wrapper support -shared correctly | Rich Felker | -2/+7 |
2012-01-23 | make glob mark symlinks-to-directories with the GLOB_MARK flag | Rich Felker | -1/+1 |
2012-01-23 | fix broken copy relocations from dynamic linker cleanup | Rich Felker | -1/+4 |
2012-01-23 | dynamic linker support for PIE binaries (position-independent main program) | Rich Felker | -3/+6 |
2012-01-23 | cleanup dynamic linker, removing some code duplication | Rich Felker | -80/+66 |
2012-01-23 | update release notes for 0.8.4v0.8.4 | Rich Felker | -3/+5 |
2012-01-22 | fix cancellation failure in single-threaded programs | Rich Felker | -1/+1 |
2012-01-22 | support GLOB_PERIOD flag (GNU extension) to glob function | Rich Felker | -1/+2 |
2012-01-22 | update WHATSNEW in preparation for 0.8.4 (not finished) | Rich Felker | -0/+30 |
2012-01-20 | use prlimit syscall for getrlimit/setrlimit | Rich Felker | -4/+14 |
2012-01-20 | add prlimit syscall wrapper | Rich Felker | -0/+18 |
2012-01-20 | fix dynamic linker not to depend on DYNAMIC ptr in 0th entry of GOT | Rich Felker | -3/+12 |
2012-01-18 | alias basename to glibc name for it, to meet abi goals | Rich Felker | -0/+3 |
2012-01-17 | fix char signedness bug in dynlinker hash function | Rich Felker | -1/+2 |
2011-12-23 | fix broken reboot wrapper (syscall needs extra silly magic arguments...) | Rich Felker | -1/+1 |
2011-11-16 | fix issue with excessive mremap syscalls on realloc | Rich Felker | -4/+2 |
2011-11-10 | fix __cplusplus extern "C" closing brace in pty.h (typo?) | Rich Felker | -1/+1 |
2011-11-10 | fix signed overflows at most-negative values in ato(i|l|ll) | Rich Felker | -6/+9 |
2011-11-10 | fix all missing instances of __cplusplus checks/extern "C" in headers | Rich Felker | -1/+166 |
2011-10-26 | report sem value overflows in sem_post | Rich Felker | -0/+4 |
2011-10-17 | add some missing GNU FNM_* extensions to the header | Rich Felker | -1/+3 |
2011-10-17 | fix some details in ugly stuff that doesn't belong in libc | Rich Felker | -6/+8 |
2011-10-15 | don't define wchar_t on c++ | Rich Felker | -0/+6 |
2011-10-14 | support vfork on i386 | Rich Felker | -0/+14 |
2011-10-14 | make available a namespace-safe vfork, if supported | Rich Felker | -1/+4 |
2011-10-14 | add dummy __cxa_finalize | Rich Felker | -0/+4 |
2011-10-14 | support __cxa_atexit, and registering atexit functions from atexit handlers | Rich Felker | -7/+26 |
2011-10-14 | simplify atexit and fflush-on-exit handling | Rich Felker | -9/+12 |
2011-10-09 | fix F_GETOWN return value handling | Rich Felker | -0/+1 |
2011-10-09 | fix typo in arm clone() asm | Rich Felker | -1/+1 |
2011-10-05 | fix fcntl O_* flags for arm | Rich Felker | -4/+4 |
2011-10-04 | make [U]INTn_C() macros have the right type... | Rich Felker | -4/+4 |
2011-10-03 | recovering ownerdead robust mutex must reset recursive lock count | Rich Felker | -0/+1 |
2011-10-03 | simplify robust mutex unlock code path | Rich Felker | -4/+4 |