about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* support vfork on i386Rich Felker2011-10-141-0/+14
* make available a namespace-safe vfork, if supportedRich Felker2011-10-141-1/+4
* add dummy __cxa_finalizeRich Felker2011-10-141-0/+4
* support __cxa_atexit, and registering atexit functions from atexit handlersRich Felker2011-10-141-7/+26
* simplify atexit and fflush-on-exit handlingRich Felker2011-10-143-9/+12
* fix F_GETOWN return value handlingRich Felker2011-10-091-0/+1
* fix typo in arm clone() asmRich Felker2011-10-091-1/+1
* recovering ownerdead robust mutex must reset recursive lock countRich Felker2011-10-031-0/+1
* simplify robust mutex unlock code pathRich Felker2011-10-031-4/+4
* fix crash if pthread_mutex_unlock is called without ever lockingRich Felker2011-10-031-1/+1
* use count=0 instead of 1 for recursive mutex with only one lock referenceRich Felker2011-10-032-4/+2
* sysconf for PTHREAD_KEYS_MAXRich Felker2011-10-031-1/+1
* synchronize cond var destruction with exiting waitsRich Felker2011-10-023-0/+12
* fix failure-to-wake in rwlock unlockRich Felker2011-10-011-1/+1
* dlsym entry point for armRich Felker2011-10-011-0/+6
* dynamic linker entry point for armRich Felker2011-10-011-0/+14
* fix various bugs in path and error handling in execvp/fexecveRich Felker2011-09-292-18/+29
* don't crash on null strings in printfRich Felker2011-09-281-1/+1
* fix excessive/insufficient wakes in __vm_unlockRich Felker2011-09-281-3/+3
* make getmntent_r discard long lines when it returns error, not seek backRich Felker2011-09-281-2/+1
* improve pshared barriersRich Felker2011-09-282-12/+14
* next step making barrier self-sync'd destruction safeRich Felker2011-09-282-6/+18
* barrier destroy must also wait for threads in other processes exiting barrierRich Felker2011-09-281-0/+2
* stupid typo (caused by rather ugly spelling in POSIX..) in aioRich Felker2011-09-281-1/+1
* correctly handle the degenerate barrier in the pshared caseRich Felker2011-09-271-1/+1
* fix crash in pthread_cond_wait mutex-locked checkRich Felker2011-09-271-1/+1
* fix crash in pthread_testcancel if pthread_self has not been calledRich Felker2011-09-271-1/+1
* improve/debloat mutex unlock error checking in pthread_cond_waitRich Felker2011-09-271-3/+3
* check mutex owner in pthread_cond_waitRich Felker2011-09-271-0/+3
* fix pshared barrier wrong return value.Rich Felker2011-09-271-1/+1
* convert the barrier pshared option back to 0/1 values when getting itRich Felker2011-09-271-1/+1
* improve error handling in mntent stuff...Rich Felker2011-09-271-2/+9
* fix missing va_end in prctl syscall wrapperRich Felker2011-09-271-0/+1
* fix clobbering of errno in get(pw|gr)([ug]id|nam) by fcloseRich Felker2011-09-272-0/+12
* process-shared barrier support, based on discussion with bdonlanRich Felker2011-09-277-16/+102
* fix incorrect allocation failure check in pthread_createRich Felker2011-09-271-1/+1
* another cond var fix: requeue count race conditionRich Felker2011-09-262-15/+13
* fix lost signals in cond varsRich Felker2011-09-263-14/+17
* cleanup various minor issues reported by nszRich Felker2011-09-264-7/+8
* redo cond vars again, use sequence numbersRich Felker2011-09-264-48/+52
* revert previous change in cond var waiter moveRich Felker2011-09-251-2/+6
* optimize cond waiter move using atomic swap instead of cas loopRich Felker2011-09-251-6/+2
* fix logic for when wakeup is not desired on cond bcastRich Felker2011-09-251-3/+4
* new futex-requeue-based pthread_cond_broadcast implementationRich Felker2011-09-254-7/+69
* fix ABA race in cond vars, improve them overallRich Felker2011-09-233-11/+12
* fix deadlock in condition wait whenever there are multiple waitersRich Felker2011-09-224-5/+18
* protect against/handle cancellation reading shadow passwordsRich Felker2011-09-211-1/+11
* make dns lookups (and thus getaddrinfo) cancellableRich Felker2011-09-211-4/+11
* use poll rather than select in dns lookups (also clock_gettime)Rich Felker2011-09-211-12/+10
* avoid setting FILE lock count when not using flockfileRich Felker2011-09-211-1/+1