about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
...
* fix typo in inotify structureRich Felker2011-02-201-1/+1
* make malloc(0) return unique pointers rather than NULLRich Felker2011-02-202-6/+10
* fix simple_malloc malloc(0) behavior not to return non-unique pointersRich Felker2011-02-201-0/+1
* fix simple_malloc size restrictionsRich Felker2011-02-201-5/+6
* fix null pointer dereference introduced in last sigprocmask commitRich Felker2011-02-201-1/+1
* make real symbols for the legacy (nonstandardized) utmp functionsRich Felker2011-02-202-6/+23
* resolve some header namespace non-issuesRich Felker2011-02-202-3/+0
* move the GNU siginfo renaming so it doesn't lead to mismatching namesRich Felker2011-02-201-1/+4
* fill in some missing siginfo stuff in signal.hRich Felker2011-02-202-10/+112
* make sys/param.h not depend on PATH_MAX and NAME_MAXRich Felker2011-02-201-2/+2
* workaround gcc bug 46926 by providing a dumb sincos implementationRich Felker2011-02-191-0/+8
* use rt_sigprocmask, not legacy sigprocmask, syscall in pthread exit codeRich Felker2011-02-191-1/+1
* fix typo in wordexp.h (note that the function is still unimplemented)Rich Felker2011-02-191-1/+1
* implement the remaining clock_* interfacesRich Felker2011-02-195-0/+36
* race condition fix: block all signals before decrementing thread countRich Felker2011-02-193-22/+2
* prevent sigprocmask/pthread_sigmask from blocking implementation signalsRich Felker2011-02-191-3/+5
* make pthread_exit run dtors for last thread, wait to decrement thread countRich Felker2011-02-191-3/+3
* make mktemp match the historic behavior, and update functions that use itRich Felker2011-02-193-5/+8
* fix major bug created from copying mkdtemp logicRich Felker2011-02-191-1/+1
* add syscall wrappers for inotifyRich Felker2011-02-195-0/+83
* cleanup cruft left from when kernel and user time_t disagreedRich Felker2011-02-192-12/+3
* prototype wait3 and wait4Rich Felker2011-02-192-3/+6
* add missing WIFCONTINUED macro and improve WIFSIGNALEDRich Felker2011-02-192-2/+4
* prototypes for brk and sbrkRich Felker2011-02-191-0/+2
* support the ugly and deprecated ucontext and sigcontext header stuff...Rich Felker2011-02-183-20/+69
* add pthread_atfork interfaceRich Felker2011-02-184-3/+57
* major improvements to temp file name generatorRich Felker2011-02-183-16/+21
* reformat mkstemp like mkdtempRich Felker2011-02-181-7/+5
* add portable lchown (trivial to support and a few ancient things want it..)Rich Felker2011-02-172-0/+10
* prepare WHATSNEW for release v0.6.0Rich Felker2011-02-171-1/+1
* document in config.mak sample that x86_64 is supportedRich Felker2011-02-171-1/+1
* update WHATSNEW in preparation for releaseRich Felker2011-02-171-2/+9
* avoid deleting the lib/empty fileRich Felker2011-02-171-1/+1
* reorganize pthread data structures and move the definitions to alltypes.hRich Felker2011-02-1728-128/+158
* new solution for empty lib dir (old one had some problems)Rich Felker2011-02-172-7/+5
* improve Makefile handling of git checkouts with missing lib/ and config.makRich Felker2011-02-171-4/+8
* make daemon try the operations that might fail before fork rather than afterRich Felker2011-02-171-12/+10
* daemon should check for failures and return -1Rich Felker2011-02-171-5/+8
* don't compare elements with themselves during qsort.Rich Felker2011-02-171-1/+1
* ucontext is no longer in the standard, so use gnu-friendly struct nameRich Felker2011-02-161-2/+2
* some gnu software wrongly uses "struct siginfo" instead of siginfo_t...Rich Felker2011-02-161-0/+1
* add to pthread.h: pthread_mutex_timedlock and sched.h, time.hRich Felker2011-02-161-1/+3
* fix printf %n specifier - missing breaks had it clobbering memoryRich Felker2011-02-161-7/+7
* patch by njk, simplifies thread register initialization for x86_64Rich Felker2011-02-161-4/+0
* patch from njk: make x86_64 __uniclone branchless.Rich Felker2011-02-161-6/+6
* fix compile failure: legacy cuserid needs to define feature testRich Felker2011-02-161-0/+1
* move stdio stuff that's not arch-specific out of bitsRich Felker2011-02-153-28/+9
* protect some limit constants with feature test macros on x86_64Rich Felker2011-02-151-1/+3
* fix the types of some integer constant limits in headersRich Felker2011-02-153-5/+5
* fix missing EXIT_* in stdlib.h after header cleanupRich Felker2011-02-151-3/+3