simplify atexit and fflush-on-exit handling
[musl] / src /
2011-10-15 Rich Felkersimplify atexit and fflush-on-exit handling
2011-10-10 Rich Felkerfix F_GETOWN return value handling
2011-10-09 Rich Felkerfix typo in arm clone() asm
2011-10-03 Rich Felkerrecovering ownerdead robust mutex must reset recursive...
2011-10-03 Rich Felkersimplify robust mutex unlock code path
2011-10-03 Rich Felkerfix crash if pthread_mutex_unlock is called without...
2011-10-03 Rich Felkeruse count=0 instead of 1 for recursive mutex with only...
2011-10-03 Rich Felkersysconf for PTHREAD_KEYS_MAX
2011-10-03 Rich Felkersynchronize cond var destruction with exiting waits
2011-10-01 Rich Felkerfix failure-to-wake in rwlock unlock
2011-10-01 Rich Felkerdlsym entry point for arm
2011-10-01 Rich Felkerdynamic linker entry point for arm
2011-09-29 Rich Felkerfix various bugs in path and error handling in execvp...
2011-09-29 Rich Felkerdon't crash on null strings in printf
2011-09-28 Rich Felkerfix excessive/insufficient wakes in __vm_unlock
2011-09-28 Rich Felkermake getmntent_r discard long lines when it returns...
2011-09-28 Rich Felkerimprove pshared barriers
2011-09-28 Rich Felkernext step making barrier self-sync'd destruction safe
2011-09-28 Rich Felkerbarrier destroy must also wait for threads in other...
2011-09-28 Rich Felkerstupid typo (caused by rather ugly spelling in POSIX...
2011-09-28 Rich Felkercorrectly handle the degenerate barrier in the pshared...
2011-09-27 Rich Felkerfix crash in pthread_cond_wait mutex-locked check
2011-09-27 Rich Felkerfix crash in pthread_testcancel if pthread_self has...
2011-09-27 Rich Felkerimprove/debloat mutex unlock error checking in pthread_...
2011-09-27 Rich Felkercheck mutex owner in pthread_cond_wait
2011-09-27 Rich Felkerfix pshared barrier wrong return value.
2011-09-27 Rich Felkerconvert the barrier pshared option back to 0/1 values...
2011-09-27 Rich Felkerimprove error handling in mntent stuff...
2011-09-27 Rich Felkerfix missing va_end in prctl syscall wrapper
2011-09-27 Rich Felkerfix clobbering of errno in get(pw|gr)([ug]id|nam) by...
2011-09-27 Rich Felkerprocess-shared barrier support, based on discussion...
2011-09-27 Rich Felkerfix incorrect allocation failure check in pthread_create
2011-09-26 Rich Felkeranother cond var fix: requeue count race condition
2011-09-26 Rich Felkerfix lost signals in cond vars
2011-09-26 Rich Felkercleanup various minor issues reported by nsz
2011-09-26 Rich Felkerredo cond vars again, use sequence numbers
2011-09-26 Rich Felkerrevert previous change in cond var waiter move
2011-09-26 Rich Felkeroptimize cond waiter move using atomic swap instead...
2011-09-25 Rich Felkerfix logic for when wakeup is not desired on cond bcast
2011-09-25 Rich Felkernew futex-requeue-based pthread_cond_broadcast implemen...
2011-09-24 Rich Felkerfix ABA race in cond vars, improve them overall
2011-09-23 Rich Felkerfix deadlock in condition wait whenever there are multi...
2011-09-22 Rich Felkerprotect against/handle cancellation reading shadow...
2011-09-22 Rich Felkermake dns lookups (and thus getaddrinfo) cancellable
2011-09-22 Rich Felkeruse poll rather than select in dns lookups (also clock_...
2011-09-22 Rich Felkeravoid setting FILE lock count when not using flockfile
2011-09-22 Rich Felkerupdate syscalls with off_t arguments to handle argument...
2011-09-20 Rich Felkerfix statvfs.c to match new fsid_t definition
2011-09-20 Rich Felkerfix the definition of struct statvfs to match lsb abi
2011-09-19 Rich Felkerfix incorrect long double parameters on arm (and other...
2011-09-18 Rich Felkerinitial commit of the arm port
2011-09-18 Rich Felkerdisable dynamic linking/loading code in static libc...
2011-09-18 Rich Felkeroverhaul clone syscall wrapping
2011-09-17 Rich Felkerdummy implementation of set_thread_area
2011-09-16 Rich Felkerfix assumptions that char is signed
2011-09-16 Rich Felkerfix more instances of old a_xchg (use new a_swap name)
2011-09-16 Rich Felkeruse a_swap rather than old name a_xchg
2011-09-16 Rich Felkerfix generic sigsetjmp (unused anyway) pointer signednes...
2011-09-16 Rich Felkerfix idiotic const-correctness error in lio_listio
2011-09-16 Rich Felkerfix ptrace (maybe)
2011-09-15 Rich Felkerimplement ptrace syscall wrapper (untested)
2011-09-14 Rich Felkerremove incorrectly-made-visible internal dst offset...
2011-09-14 Rich Felkerfix inconsistent signature for aio_error
2011-09-14 Rich Felkerfix return types for aio_read and aio_write again
2011-09-14 Rich Felkerfix various errors in function signatures/prototypes...
2011-09-13 Rich Felkeradd missing posix_spawnattr_init/destroy functions
2011-09-13 Rich Felkerremove some stray trailing space characters
2011-09-12 Rich Felkerimplement gnu sigisemptyset
2011-09-12 Rich Felkeradd dummied strverscmp (obnoxious GNU function)
2011-09-11 Rich Felkerfix serious bug in pthread_join
2011-09-10 Rich Felkerfix pthread_join wait call: thread termination tid...
2011-09-09 Rich Felkerimplement POSIX asynchronous io
2011-09-06 Rich Felkerfix incorrect overflow errors on strtoul, etc.
2011-09-05 Rich Felkerstrptime: fix use of uninitialized dest field in conver...
2011-09-05 Rich Felkermore fmemopen null termination fixes
2011-09-05 Rich Felkerfix some fmemopen behaviors
2011-09-05 Rich Felkerhandle pending cancellation when enabling async cancell...
2011-09-04 Rich Felkerfmemopen: fix eof handling, hopefully right this time
2011-09-04 Rich Felkerfmemopen fixes
2011-09-04 Rich Felkermemstreams: fix incorrect handling of file pos > curren...
2011-09-04 Rich Felkeroptimize seek function for memory streams
2011-09-04 Rich Felkerfix twos complement overflow bug in mem streams boundar...
2011-09-04 Rich Felkerimplement fmemopen
2011-09-04 Rich Felkerfix some length calculations in memory streams
2011-09-03 Rich Felkerimplement open_wmemstream
2011-09-03 Rich Felkerfix RTLD_NEXT on x86_64
2011-09-03 Rich Felkerimplement open_memstream
2011-09-02 Rich Felkerfix missing prototypes/wrong signature for psiginfo...
2011-08-23 Rich Felkerbring back ___environ symbol (3 underscores)
2011-08-23 Rich Felkeruse new a_crash() asm to optimize double-free handler.
2011-08-23 Rich Felkersecurity hardening: ensure suid programs have valid...
2011-08-17 Rich Felkerin pathconf, -1, not 0, means unsupported.. syncio...
2011-08-17 Rich Felkerfix bogus pathconf result for file size bits
2011-08-16 Rich Felkerpartially working strptime
2011-08-16 Rich Felkerldso: move the suid/secure check code closer to env...
2011-08-16 Rich Felkerhonor AT_SECURE aux vector flag
2011-08-16 Rich FelkerRTLD_NEXT support
2011-08-16 Rich FelkerLD_PRELOAD support
2011-08-15 Rich Felkersimplify and improve double-free check
2011-08-14 Rich Felkermacro for pthread_equal
next