about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* remove unused code from strcpy.cRich Felker2018-09-121-7/+0
* move __res_msend_rc declaration to lookup.hRich Felker2018-09-122-1/+1
* fix type-mismatched declarations of __nl_langinfo_l in source filesRich Felker2018-09-122-2/+2
* for c11 mtx and cnd functions, use externally consistent type namesRich Felker2018-09-126-12/+17
* move and deduplicate declarations of __dns_parse to make it checkableRich Felker2018-09-124-2/+3
* move lgamma-related internal declarations to libm.hRich Felker2018-09-125-12/+7
* declare __syscall_ret as hidden in vfork asmRich Felker2018-09-124-0/+4
* add arm asm for vforkPatrick Oppenlander2018-09-121-0/+13
* move declarations for malloc internals to malloc_impl.hRich Felker2018-09-124-6/+6
* improve machinery for ldso to report libc versionRich Felker2018-09-122-6/+3
* make internal declarations for flockfile tracking functions checkableRich Felker2018-09-123-4/+5
* make inadvertently exposed __h{create,delete,search}_r functions staticRich Felker2018-09-121-6/+6
* make inadvertently exposed __pthread_{timed,try}join_np functions staticRich Felker2018-09-121-2/+2
* use idiomatic weak alias approach for defining asctime_rRich Felker2018-09-123-33/+28
* move and deduplicate declarations of __vdsosym to make it checkableRich Felker2018-09-123-4/+2
* move and deduplicate declarations of __procfdname to make it checkableRich Felker2018-09-1210-16/+5
* fix issues from public functions defined without declaration visibleRich Felker2018-09-1211-2/+22
* remove leftover declarations for removed functions from pthread_impl.hRich Felker2018-09-051-4/+0
* define and use internal macros for hidden visibility, weak refsRich Felker2018-09-0529-88/+66
* fix namespace violation for c11 mutex functionsRich Felker2018-09-041-1/+3
* in pthread_mutex_timedlock, avoid repeatedly reading mutex type fieldRich Felker2018-09-041-3/+4
* in pthread_mutex_trylock, EBUSY out more directly when possibleRich Felker2018-09-041-2/+2
* implement fexecve in terms of execveat when it existsJoseph C. Sible2018-09-041-0/+5
* fix stack-based oob memory clobber in resolver's result sortingRich Felker2018-09-021-1/+1
* consistently use _NSIG/8 idiom for kernel sigset size in sigactionRich Felker2018-09-011-3/+3
* always terminate by SIGABRT when abort is calledRich Felker2018-09-012-4/+40
* optimize raise not to make a syscall for getting tidRich Felker2018-09-011-3/+1
* prevent perror from clobbering stderr's orientationRich Felker2018-08-301-0/+8
* prevent psignal/psiginfo from clobbering stderr orientation, errnoRich Felker2018-08-302-8/+21
* make vfprintf set stream orientation even for zero-length outputRich Felker2018-08-291-1/+2
* re-fix vfprintf temporary buffer logicRich Felker2018-08-291-2/+2
* fix missing flush of stderr at exit if it was put in buffered modeRich Felker2018-08-291-0/+1
* fix async thread cancellation on sh-fdpicRich Felker2018-08-291-0/+3
* fix async thread cancellation on powerpc64Rich Felker2018-08-291-0/+7
* vfwprintf: honor field width with 'c' format typeA. Wilcox2018-08-281-1/+4
* fix several values reported by sysconfRich Felker2018-08-281-8/+11
* fix return value of system on failure to spawn child processRich Felker2018-08-281-1/+1
* set stream orientations in open_[w]memstreamRich Felker2018-08-282-0/+3
* make fmemopen's w+ mode truncate the bufferRich Felker2018-08-281-0/+1
* set errno when fileno is called on a FILE with no underlying fdRich Felker2018-08-281-4/+7
* reject invalid arguments to pthread_barrierattr_setpsharedRich Felker2018-08-281-0/+1
* rewrite __aeabi_read_tp in asmSzabolcs Nagy2018-08-282-12/+6
* fix deadlock in async thread self-cancellationRich Felker2018-08-281-1/+5
* time: fix incorrect DST offset when using POSIX timezones without DSTA. Wilcox2018-08-271-1/+1
* fix tls access on arm targets before armv6kSzabolcs Nagy2018-08-231-1/+1
* fix missing strerror text for EMULTIHOPRich Felker2018-08-231-0/+1
* fix printf precision specifier for hex floats on non-ld80 archsRich Felker2018-08-231-0/+1
* getopt: update optarg and optind correctly on missing argumentRich Felker2018-08-221-6/+6
* remove erroneous SYMLINK_MAX definition from limits.h, pathconfRich Felker2018-08-201-1/+1
* mips archs: fix runaway execution if start fn passed to clone returnsSegev Finer2018-08-183-3/+12