summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorLines
2013-10-19fix return value for inet_pton in ipv6 failure casesRich Felker-6/+6
2013-10-18use consistent include guard name in arpa/ftp.hSzabolcs Nagy-2/+2
2013-10-18fix typo in socket.h (wrong macro name)Szabolcs Nagy-1/+1
2013-10-18in faccessat slow path, add close-on-exec to pipe fdsRich Felker-1/+1
2013-10-12fix uid/gid-setting error in faccessat with AT_EACCESS flagRich Felker-2/+2
2013-10-08fix errno value for getcwd when size argument is zeroRich Felker-1/+7
2013-10-07math: fix rare underflow issue in fmaSzabolcs Nagy-13/+55
2013-10-07math: use sqrtl if FLT_EVAL_METHOD==2 in acosh and acoshfSzabolcs Nagy-0/+13
2013-10-07fix clockid macro names in time.h, reported by Paul SchutteSzabolcs Nagy-2/+2
2013-10-07remove errno setting from setenv, malloc sets it correctly on oomSzabolcs Nagy-1/+0
2013-10-07fix allocation sizes in regcompSzabolcs Nagy-4/+4
2013-10-07add missing va_end in execl* for correcness and static code analyzersSzabolcs Nagy-0/+3
2013-10-07minor vfprintf and vfwprintf changes to please static code analyzersSzabolcs Nagy-6/+11
2013-10-06math: remove an unused variable from modflSzabolcs Nagy-1/+0
2013-10-05slightly optimize __brk for sizeRich Felker-1/+1
2013-10-05fix failure of malloc to set errno on heap (brk) exhaustionRich Felker-0/+1
2013-10-04fix failure to check malloc result in setenvRich Felker-9/+9
2013-10-04math: remove code duplication in erfl found by clang analyzerSzabolcs Nagy-13/+2
2013-10-04math: remove a useless assignment in lgammal found by clang analyzerSzabolcs Nagy-2/+2
2013-10-04fix invalid implicit pointer conversion in pthread_key_createRich Felker-1/+1
2013-10-04fix uninitialized variable in dladdrRich Felker-1/+1
2013-10-04removed unused variable in vfwprintfRich Felker-2/+1
2013-10-03fix new environment always being null with execleRich Felker-2/+1
2013-09-29fix off-by-one error in getgrnam_r and getgrgid_r, clobbering gr_nameRich Felker-2/+2
2013-09-27fix buffer overflow in mbsrtowcsRich Felker-1/+1
2013-09-27math: fix comparision macros (isless etc) when FLT_EVAL_METHOD!=0Szabolcs Nagy-10/+10
2013-09-26add missing i386 syscall numbersRich Felker-0/+10
2013-09-26remove duplicate lines from mips bits/syscall.hRich Felker-48/+0
2013-09-23release notes for 0.9.14v0.9.14Rich Felker-0/+30
2013-09-22fix arm atomic store and generate simpler/less-bloated/faster codeRich Felker-6/+8
2013-09-20fix potential deadlock bug in libc-internal locking logicRich Felker-13/+15
2013-09-20correct the sysconf value for RTSIG_MAXRich Felker-1/+2
2013-09-16fix sigemptyset and sigfillset for mipsRich Felker-1/+10
2013-09-16fix clobbering of caller's stack in mips __clone functionRich Felker-0/+3
2013-09-16sys/resource.h: add PRIO_MIN and PRIO_MAX for getpriority and setprioritySzabolcs Nagy-0/+3
2013-09-16update include/elf.h following glibc changesSzabolcs Nagy-27/+143
2013-09-16omit CLONE_PARENT flag to clone in pthread_createRich Felker-1/+1
2013-09-16use symbolic names for clone flags in pthread_createRich Felker-2/+5
2013-09-15sys/socket.h: add new SO_BUSY_POLL socket optionSzabolcs Nagy-0/+1
2013-09-15ptrace.h: add new ptrace requests to get/set sigmaskSzabolcs Nagy-0/+2
2013-09-15net/if_arp.h: add missing ARP hardware identifiers from linux uapi headersSzabolcs Nagy-1/+7
2013-09-15netinet/in.h: add missing IP protocol numbers from the linux uapi headersSzabolcs Nagy-0/+2
2013-09-15support configurable page size on mips, powerpc and microblazeSzabolcs Nagy-17/+29
2013-09-14fix overflow in sysconf for _SC_MQ_PRIO_MAXRich Felker-1/+2
2013-09-14fix child stack alignment on mips cloneRich Felker-0/+1
2013-09-14fix mips sysv ipc bits headersRich Felker-3/+9
2013-09-13fix x86_64 lrintl asm, againRich Felker-2/+2
2013-09-09do not use default when dynamic linker fails to open existing path fileRich Felker-0/+2
2013-09-06math: remove STRICT_ASSIGN from exp2f (see previous commit)Szabolcs Nagy-1/+1
2013-09-06math: remove STRICT_ASSIGN macroSzabolcs Nagy-23/+13