about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* increase syslog message limit from 256 to 1024Rich Felker2015-01-131-1/+1
* remove rlimit hacks from multi-threaded set*id() codeRich Felker2015-01-121-23/+15
* simplify ctermidRich Felker2015-01-121-14/+2
* fix regression in getopt_long support for non-option argumentsRich Felker2015-01-111-7/+6
* check for connect failure in syslog log openingRich Felker2015-01-091-2/+6
* overhaul forkpty function using new login_ttyRich Felker2014-12-211-26/+45
* block pthread cancellation in openpty functionRich Felker2014-12-201-9/+14
* don't write openpty results until success is determinedRich Felker2014-12-201-10/+12
* add login_tty functionFelix Janda2014-12-201-0/+14
* set optopt in getopt_longRich Felker2014-12-201-0/+1
* add error message printing to getopt_long and make related improvementsRich Felker2014-12-202-6/+32
* support translation for getopt error messagesRich Felker2014-12-201-0/+2
* fix stderr locking and ferror semantics in getopt message printingRich Felker2014-12-191-12/+16
* use tkill instead of tgkill in implementing raiseRich Felker2014-12-181-3/+2
* don't suppress sign output for NANs in printfRich Felker2014-12-181-1/+1
* fix return value computation in one code path of wcsnrtombsRich Felker2014-12-181-1/+1
* provide CMPLX macros in implementation-internal libm.hRich Felker2014-12-171-0/+12
* implement FNM_CASEFOLD extension to fnmatch functionNagy Szabolcs2014-12-171-11/+25
* add basic dns record parsing functionsRich Felker2014-12-171-0/+171
* correctly handle write errors encountered by printf-family functionsRich Felker2014-12-172-2/+12
* simplify getopt_long argv permutation loop logicRich Felker2014-12-131-3/+1
* fix handling of "--" with getopt_long argv permutationRich Felker2014-12-131-1/+0
* accept null longopts pointer in getopt_longRich Felker2014-12-111-1/+1
* fix getopt handling of initial '+' in optstringRich Felker2014-12-101-1/+1
* support abbreviated options in getopt_longRich Felker2014-12-101-7/+18
* support options after non-option arguments in getopt_long (argv permutation)Rich Felker2014-12-101-0/+39
* use direct syscall rather than write function in posix_spawn childRich Felker2014-12-051-1/+1
* don't fail posix_spawn on failed closeRich Felker2014-12-051-2/+1
* fix getopt handling of ':' modifier for multibyte option charactersRich Felker2014-12-041-4/+9
* fix return value of pthread_getaffinity_np and pthread_setaffinity_npRich Felker2014-12-021-8/+11
* fix uninitialized output from sched_getaffinityRich Felker2014-12-021-1/+5
* add support for non-option arguments extension to getoptGianluca Anzolin2014-12-022-4/+20
* adapt dynamic linker for new binutils versions that omit DT_RPATHRich Felker2014-11-231-0/+2
* fix tabs/spaces in memcpy.sRich Felker2014-11-231-279/+279
* fix build regression in arm asm for setjmp/longjmp with old assemblersRich Felker2014-11-232-2/+2
* fix build regression in arm asm for memcpyRich Felker2014-11-231-30/+30
* arm assembly changes for clang compatibilityJoakim Sindholt2014-11-233-32/+32
* unify non-inline version of syscall code across archsRich Felker2014-11-221-0/+10
* fix __aeabi_read_tp oversight in arm atomics/tls overhaulRich Felker2014-11-221-4/+0
* overhaul ARM atomics/tls for performance and compatibilityRich Felker2014-11-191-12/+1
* save auxv pointer into libc struct early in dynamic linker startupRich Felker2014-11-191-0/+1
* getopt: fix optional argument processingFelix Fietkau2014-11-151-2/+2
* implement a private state for the uchar.h functionsJens Gustedt2014-11-153-0/+6
* fix behavior of printf with alt-form octal, zero precision, zero valueRich Felker2014-11-151-1/+1
* math: use fnstsw consistently instead of fstsw in x87 asmSzabolcs Nagy2014-11-0511-11/+11
* math: fix x86_64 and x32 asm not to use sahf instructionSzabolcs Nagy2014-11-056-28/+14
* fix uninitialized mode variable in openat functionRich Felker2014-10-311-1/+1
* math: use the rounding idiom consistentlySzabolcs Nagy2014-10-3113-58/+89
* fix rint.c and rintf.c when FLT_EVAL_METHOD!=0Szabolcs Nagy2014-10-312-4/+22
* fix invalid access by openat to possibly-missing variadic mode argumentRich Felker2014-10-301-4/+8