about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* fix typo in setpriority syscall wrapperRich Felker2013-04-011-1/+1
* implement pthread_getattr_npRich Felker2013-03-313-2/+31
* remove __SYSCALL_SSLEN arch macro in favor of using public _NSIGRich Felker2013-03-2615-23/+27
* provide emulation of fcntl F_DUPFD_CLOEXEC on old kernelsRich Felker2013-03-261-0/+16
* in pipe2, use pipe() rather than __syscall(SYS_pipe, ...) for fallbackRich Felker2013-03-251-3/+3
* rewrite popen to use posix_spawn instead of fragile vfork hacksRich Felker2013-03-241-41/+41
* remove cruft from pre-posix_spawn version of the system functionRich Felker2013-03-241-6/+0
* fix multiple bugs in syslog interfacesRich Felker2013-03-231-24/+27
* fix types for wctype_t and wctrans_tRich Felker2013-03-041-4/+4
* fix integer type issue in strverscmpRich Felker2013-02-261-1/+3
* implement non-stub strverscmpRich Felker2013-02-261-2/+35
* replace stub with working strcasestrRich Felker2013-02-211-2/+4
* fix wrong return value from wmemmove on forward copiesRich Felker2013-02-211-1/+2
* use memcmp instead of str[n]cmp for temp function XXXXXX checkingRich Felker2013-02-202-2/+2
* fix error cases in mkostemps coreRich Felker2013-02-201-6/+3
* remove leftover unused variable in mktemp after refactoringRich Felker2013-02-201-1/+0
* add mkostemp, mkstemps, and mkostemps functions and reorganize temp internalsRich Felker2013-02-206-29/+83
* remove unused #undef environ now that libc.h no longer #defines itRich Felker2013-02-171-1/+0
* consistently use the internal name __environ for environRich Felker2013-02-173-5/+4
* add fgetgrent functionRich Felker2013-02-171-0/+9
* fix typo in newly-added error message for EOWNERDEADRich Felker2013-02-071-1/+1
* improve error stringsRich Felker2013-02-071-27/+30
* base system() on posix_spawnRich Felker2013-02-031-41/+26
* fix unsigned comparison bug in posix_spawnRich Felker2013-02-031-1/+1
* overhaul posix_spawn to use CLONE_VM instead of vforkRich Felker2013-02-033-55/+125
* streamline old-kernel fallback path of pipe2 to use syscalls directlyRich Felker2013-02-031-4/+4
* 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