about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* dynamically allocate storage for gethostby* buffersRich Felker2013-02-022-10/+32
* fix blank ai_canonname from getaddrinfo for non-CNAMEsRich Felker2013-02-021-1/+1
* fix memory leak due to double call to getaddrinfo in gethostbyname*Rich Felker2013-02-021-1/+0
* fix error returns in gethostby*_r functionsRich Felker2013-02-022-17/+10
* fix uninitialized map_len being used in munmap failure paths in load_libraryRich Felker2013-02-021-3/+2
* fix stale locks left behind when pthread_create failsRich Felker2013-02-011-3/+6
* if pthread_create fails, it must not attempt mmap if there is no mappingRich Felker2013-02-011-1/+1
* pthread stack treatment overhaul for application-provided stacks, etc.Rich Felker2013-02-013-23/+33
* make some arrays constrofl0r2013-02-027-8/+8
* replace __wake function with macro that performs direct syscallRich Felker2013-02-012-10/+2
* fix up minor misplacement of restrict keyword in spawnattr sched stubsRich Felker2013-02-011-2/+2
* revert regex "cleanup" that seems unjustified and may break backtrackingRich Felker2013-02-011-0/+3
* fix tm_to_time logic for number of days in novemberRich Felker2013-01-261-1/+1
* add support for RTLD_NOLOAD to dlopenRich Felker2013-01-231-3/+7
* fix regression in dlsym: rejection of special RTLD_* handles as invalidRich Felker2013-01-231-1/+2
* fix warning building dynlink.c stub for static libcRich Felker2013-01-161-2/+2
* fix bug in dladdr that prevented resolving addresses in the PLTRich Felker2013-01-161-1/+1
* remove unused "params" related code from regexSzabolcs Nagy2013-01-152-21/+11
* Merge remote-tracking branch 'nsz/math'Rich Felker2013-01-143-297/+207
|\
| * math: erf and erfc cleanupSzabolcs Nagy2013-01-073-297/+207
* | regex: remove an unused local variable from regexecSzabolcs Nagy2013-01-141-3/+0
* | in crypt_des change unnecessary union keybuf into unsigned char[]Szabolcs Nagy2013-01-131-11/+8
* | crypt: fix the prototype of md5_sum, sha256_sum and sha512_sumSzabolcs Nagy2013-01-133-3/+3
* | fix lio_listio return value in LIO_WAIT modeSzabolcs Nagy2013-01-131-1/+1
* | check for invalid handles in dlsym/dlcloseRich Felker2013-01-101-1/+17
|/
* __assert_fail(): remove _Noreturn, to get proper stacktracesrofl0r2013-01-041-1/+1
* math: bessel cleanup (jn.c and jnf.c)Szabolcs Nagy2013-01-012-164/+161
* math: bessel cleanup (j1.c and j1f.c)Szabolcs Nagy2013-01-012-187/+138
* math: bessel cleanup (j0.c and j0f.c)Szabolcs Nagy2013-01-012-203/+161
* fix alignment logic in strlcpyRich Felker2012-12-261-1/+1
* fix reference to libc struct in static tls init codeRich Felker2012-12-251-1/+1
* clean up and fix logic for making mmap fail on invalid/unsupported offsetsRich Felker2012-12-201-3/+7
* merge a few fixes by sh4rm4Rich Felker2012-12-191-0/+11
|\
| * add inet_network (required for wine)rofl0r2012-12-191-0/+11
* | math: use 0x1p-120f and 0x1p120f for tiny and huge valuesSzabolcs Nagy2012-12-1610-27/+27
* | math: tgammal.c fixesSzabolcs Nagy2012-12-161-28/+23
* | math: tanh.c cleanup similar to sinh, coshSzabolcs Nagy2012-12-163-173/+83
* | math: sinh.c cleanup similar to the cosh oneSzabolcs Nagy2012-12-163-171/+72
* | math: finished cosh.c cleanupSzabolcs Nagy2012-12-163-142/+49
|/
* math: x86_64 version of expl, fixed some comments in the i386 versionSzabolcs Nagy2012-12-164-4/+112
* math: move x86_64 exp2l implementation to exp2l.s from expl.sSzabolcs Nagy2012-12-163-85/+76
* fix breakage in ldd (failure to print library load address)Rich Felker2012-12-151-2/+2
* math: fix i386/expl.s with more precise x*log2eSzabolcs Nagy2012-12-142-7/+107
* math: add a non-dummy tgamma implementationSzabolcs Nagy2012-12-122-20/+215
* math: cosh cleanupSzabolcs Nagy2012-12-123-70/+63
* math: fix comment in __rem_pio2f.cSzabolcs Nagy2012-12-121-2/+2
* math: add empty __invtrigl.s to i386 and x86_64Szabolcs Nagy2012-12-122-0/+0
* math: clean up inverse trigonometric functionsSzabolcs Nagy2012-12-1112-377/+258
* math: rewrite inverse hyperbolic functions to be simpler/smallerSzabolcs Nagy2012-12-119-406/+149
* make CMPLX macros available in complex.h in non-c11 mode as wellSzabolcs Nagy2012-12-111-8/+0