about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* remove some stray trailing space charactersRich Felker2011-09-134-4/+4
* implement gnu sigisemptysetRich Felker2011-09-121-0/+9
* add dummied strverscmp (obnoxious GNU function)Rich Felker2011-09-111-0/+7
* fix serious bug in pthread_joinRich Felker2011-09-111-2/+2
* fix pthread_join wait call: thread termination tid futex is not privateRich Felker2011-09-091-1/+1
* implement POSIX asynchronous ioRich Felker2011-09-097-0/+338
* fix incorrect overflow errors on strtoul, etc.Rich Felker2011-09-054-8/+20
* strptime: fix use of uninitialized dest field in converting integerRich Felker2011-09-051-1/+1
* more fmemopen null termination fixesRich Felker2011-09-041-2/+3
* fix some fmemopen behaviorsRich Felker2011-09-041-4/+7
* handle pending cancellation when enabling async cancellationRich Felker2011-09-041-0/+1
* fmemopen: fix eof handling, hopefully right this timeRich Felker2011-09-041-3/+4
* fmemopen fixesRich Felker2011-09-041-1/+3
* memstreams: fix incorrect handling of file pos > current sizeRich Felker2011-09-042-4/+4
* optimize seek function for memory streamsRich Felker2011-09-042-24/+6
* fix twos complement overflow bug in mem streams boundary checkRich Felker2011-09-042-2/+2
* implement fmemopenRich Felker2011-09-031-18/+66
* fix some length calculations in memory streamsRich Felker2011-09-032-3/+3
* implement open_wmemstreamRich Felker2011-09-031-0/+95
* fix RTLD_NEXT on x86_64Rich Felker2011-09-031-1/+1
* implement open_memstreamRich Felker2011-09-031-0/+94
* fix missing prototypes/wrong signature for psiginfo, psignalRich Felker2011-09-021-1/+1
* bring back ___environ symbol (3 underscores)Rich Felker2011-08-231-0/+1
* use new a_crash() asm to optimize double-free handler.Rich Felker2011-08-231-2/+2
* security hardening: ensure suid programs have valid stdin/out/errRich Felker2011-08-234-15/+42
* in pathconf, -1, not 0, means unsupported.. syncio presumably works, too.Rich Felker2011-08-161-3/+3
* fix bogus pathconf result for file size bitsRich Felker2011-08-161-1/+1
* partially working strptimeRich Felker2011-08-161-148/+149
* ldso: move the suid/secure check code closer to env/auxv processingRich Felker2011-08-161-7/+7
* honor AT_SECURE aux vector flagRich Felker2011-08-161-2/+2
* RTLD_NEXT supportRich Felker2011-08-164-3/+32
* LD_PRELOAD supportRich Felker2011-08-161-0/+20
* simplify and improve double-free checkRich Felker2011-08-151-2/+2
* macro for pthread_equalRich Felker2011-08-141-1/+1
* fix missing include in last commitRich Felker2011-08-131-0/+1
* fix clock() functionRich Felker2011-08-131-2/+7
* implement forkallRich Felker2011-08-121-0/+66
* pthread and synccall cleanup, new __synccall_wait opRich Felker2011-08-124-7/+13
* more efficient signal blocking for timer threadsRich Felker2011-08-121-4/+4
* normal exit from timer thread should run dtors, restore cancel stateRich Felker2011-08-111-1/+1
* block signals in timer threadsRich Felker2011-08-111-0/+4
* condition variable signal/bcast need not wake unless there are waitersRich Felker2011-08-072-4/+4
* use weak aliase rather than weak reference for vdso clock_gettimeRich Felker2011-08-071-8/+12
* simplify unified timed wait code, drop support for newer methodRich Felker2011-08-071-31/+28
* add fast path for normal mutexes back to pthread_mutex_lockRich Felker2011-08-071-0/+3
* close should not be cancellable after "failing" with EINTRRich Felker2011-08-071-1/+2
* simplify multi-threaded errno, eliminate useless function pointerRich Felker2011-08-063-12/+5
* use weak aliases rather than function pointers to simplify some codeRich Felker2011-08-066-9/+20
* fix off-by-one bug in siglongjmp that caused unpredictable behaviorRich Felker2011-08-051-1/+1
* further debloat cancellation handlersRich Felker2011-08-034-17/+30