about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
* release notes for 0.9.11 v0.9.11Rich Felker2013-06-291-0/+43
* fix failure of mbsrtowcs to record stop position when dest is fullRich Felker2013-06-291-1/+4
* fix shifts possibly larger than type in major() macroRich Felker2013-06-291-1/+1
* implement minimal dlinfo functionRich Felker2013-06-293-0/+23
* add some comments about the mips ksigaction structure weirdnessRich Felker2013-06-292-0/+6
* 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-282-1/+16
* add missing type shmatt_t in sys/shm.hRich Felker2013-06-281-0/+2
* 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
* minor compatibility fixes in utmp.h and fixing mismatch with paths.hRich Felker2013-06-272-4/+10
* 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-262-1/+2
* 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
* respect iso c namespace in stdio.h and wchar.h regarding va_listRich Felker2013-06-258-17/+26
* make newline-delimited dynamic linker path file actually workRich Felker2013-06-251-1/+1
* implement inet_lnaof, inet_netof, and inet_makeaddrRich Felker2013-06-256-40/+59
* add ether_aton[_r] and ether_ntoa[_r] functionsRich Felker2013-06-252-0/+57
* fix scanf %c conversion wrongly storing a terminating null byteRich Felker2013-06-222-4/+8
* fix major scanf breakage with unbuffered streams, fmemopen, etc.Rich Felker2013-06-221-0/+1
* fix invalid access in aio notificationRich Felker2013-06-161-1/+1
* fix uninitialized variable in lio (aio) codeRich Felker2013-06-161-1/+1
* improve the quality of output from rand_rRich Felker2013-06-121-1/+10
* add clock id macros for a number of new(ish) Linux-specific clocksRich Felker2013-06-081-0/+6
* fix the type of CLOCKS_PER_SEC to match new clock_t typeRich Felker2013-06-081-1/+1
* support cputime clocks for processes/threads other than selfRich Felker2013-06-082-3/+7
* prng: make rand_r have 2^32 period instead of 2^31Szabolcs Nagy2013-06-082-2/+2
* prng: fix rand() to give good sequence with small stateSzabolcs Nagy2013-06-081-2/+4
* fix mixup in previous change to gcc wrapperRich Felker2013-06-071-1/+1
* make gcc-specific headers (intrinsics, etc.) available with wrapperRich Felker2013-06-071-2/+2
* improve handling of nonstandard fields in struct tmRich Felker2013-06-071-4/+5
* implement 'm' modifier for wide scanf variantsRich Felker2013-06-061-7/+40
* implement the 'm' (malloc) modifier for scanfRich Felker2013-06-051-22/+48
* refactor wide-char scanf string handlingRich Felker2013-06-051-55/+32
* simplify some logic in scanf and remove redundant invalid-format checkRich Felker2013-06-041-18/+8
* refactor scanf core to use common code path for all string formatsRich Felker2013-06-041-85/+52
* align stack properly for calling global ctors/dtors on x86[_64]Rich Felker2013-06-034-0/+8
* ensure that thread dtv pointer is never null to optimize __tls_get_addrRich Felker2013-06-032-4/+6
* Merge remote-tracking branch 'nsz/review'Rich Felker2013-05-269-48/+30
|\
| * fix the prototype of settimeofday to follow the original BSD declarationSzabolcs Nagy2013-05-262-6/+7
| * fix ioctl _IOR, _IOW, etc macros to avoid signed overflow (2<<30)Szabolcs Nagy2013-05-266-38/+19