about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* remove __libc_csu_* cruftRich Felker2013-07-212-10/+0
* add support for init/fini array in main program, and greatly simplifyRich Felker2013-07-214-26/+33
* fix order of fini_array execution for shared libsRich Felker2013-07-211-2/+2
* add support for init_array/fini_array ctors/dtors to dynamic linkerRich Felker2013-07-201-2/+13
* fix shm_open wrongly being cancellableRich Felker2013-07-201-1/+6
* fix uninitialized/stale use of alloc (%m modifier) flag in scanfRich Felker2013-07-202-0/+4
* harden realloc/free to detect simple overflowsRich Felker2013-07-191-0/+6
* improve [f]stat[v]fs functions, and possibly work around old kernelsRich Felker2013-07-191-2/+5
* change uid_t, gid_t, and id_t to unsigned typesRich Felker2013-07-192-6/+20
* make the dynamic linker find its path file relative to its own locationRich Felker2013-07-181-1/+20
* fix off-by-one error in checks for implementation-internal signal numbersRich Felker2013-07-183-3/+3
* make posix_spawn (and functions that use it) use CLONE_VFORK flagRich Felker2013-07-171-1/+2
* fix missing argument in variadic syscall macrosRich Felker2013-07-171-1/+1
* fix error code on time conversion overflowsRich Felker2013-07-174-4/+4
* fix fd leak in file mapping code used in new zoneinfo supportRich Felker2013-07-171-1/+1
* the big time handling overhaulRich Felker2013-07-1718-348/+649
* fix omission of dtv setup in static linked programs on TLS variant I archsRich Felker2013-07-131-1/+1
* fix invalid library phdr pointers passed to callback from dl_iterate_phdrRich Felker2013-07-101-9/+16
* fix a couple misleading/wrong signal descriptions in strsignalRich Felker2013-07-091-2/+2
* add realtime signals to strsignalRich Felker2013-07-091-3/+19
* fix off-by-one array bound in strsignalRich Felker2013-07-091-1/+1
* fix bogus lazy allocation in ctermid and missing malloc failure checkRich Felker2013-07-091-10/+7
* fix fd leak on races and cancellation in ctermidRich Felker2013-07-091-2/+3
* fix missing SOCK_CLOEXEC in various functions that use sockets internallyRich Felker2013-07-094-4/+4
* move core memalign code from aligned_alloc to __memalignRich Felker2013-07-043-49/+55
* move alignment check from aligned_alloc to posix_memalignRich Felker2013-07-042-1/+2
* add stubs for additional legacy ether.h functionsRich Felker2013-07-011-0/+15
* fix failure of mbsrtowcs to record stop position when dest is fullRich Felker2013-06-291-1/+4
* implement minimal dlinfo functionRich Felker2013-06-292-0/+20
* add some comments about the mips ksigaction structure weirdnessRich Felker2013-06-291-0/+3
* fix missing synchronization in calls from dynamic linker to global ctorsRich Felker2013-06-291-0/+4
* prevent shmget from allocating objects that overflow ptrdiff_tRich Felker2013-06-291-0/+2
* work around wrong kernel type for sem_nsems member of struct semid_dsRich Felker2013-06-281-0/+7
* implement week-based-year year numbers in strftimeRich Felker2013-06-281-27/+34
* fix breakage in last commit to strftime due to missing INT_MAXRich Felker2013-06-281-0/+1
* implement week numbers and half of the week-based-year logic for strftimeRich Felker2013-06-281-3/+38
* disallow creation of objects larger than PTRDIFF_MAX via mmapRich Felker2013-06-271-0/+5
* fix syscall argument bug in pthread_getschedparamRich Felker2013-06-261-1/+1
* fix temp file leak in sem_open on successful creation of new semaphoreRich Felker2013-06-261-2/+2
* fix bug whereby sem_open leaked its own internal slots on failureRich Felker2013-06-261-3/+6
* in sem_open, don't leak vm mapping if fstat failsRich Felker2013-06-261-2/+2
* fix failure of pthread_setschedparam to pass correct param to kernelRich Felker2013-06-261-1/+1
* document in sysconf and unistd.h that per-thread cpu clocks existRich Felker2013-06-261-1/+1
* fix iconv conversion to legacy 8bit codepagesRich Felker2013-06-261-2/+2
* remove useless conditional before free from dynamic linker path codeRich Felker2013-06-261-1/+1
* fix dynamic linker handling of empty path file or error reading path fileRich Felker2013-06-261-4/+3
* make newline-delimited dynamic linker path file actually workRich Felker2013-06-251-1/+1
* implement inet_lnaof, inet_netof, and inet_makeaddrRich Felker2013-06-255-39/+55
* add ether_aton[_r] and ether_ntoa[_r] functionsRich Felker2013-06-251-0/+43
* fix scanf %c conversion wrongly storing a terminating null byteRich Felker2013-06-222-4/+8