about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
* make err.h functions print __prognameRich Felker2013-05-181-0/+4
* add FLT_TRUE_MIN, etc. macros from C11Rich Felker2013-05-177-0/+8
* remove the __STDC_FORMAT_MACROS nonsense from inttypes.hRich Felker2013-05-171-4/+0
* fix mknod and mknodat to accept large dev_t valuesRich Felker2013-05-162-5/+2
* math: use double_t for temporaries to avoid stores on i386Szabolcs Nagy2013-05-1521-28/+31
* support full range of dev_t major/minor numbers in makedev, etc. macrosRich Felker2013-05-151-3/+10
* remove compound literals from math.h to please c++Szabolcs Nagy2013-05-061-5/+10
* fix incorrect clock tick scaling in fallback case of clock()Rich Felker2013-05-051-1/+1
* do not interpret errors in return value of times() syscallRich Felker2013-05-051-1/+1
* transition to using functions for internal signal blocking/restoringRich Felker2013-04-265-12/+57
* optimize/debloat raiseRich Felker2013-04-261-2/+2
* prevent code from running under a thread id which already gave ESRCHRich Felker2013-04-261-1/+7
* synccall signal handler need not handle dead threads anymoreRich Felker2013-04-261-9/+0
* fix clobbering of signal mask when creating thread with sched attributesRich Felker2013-04-261-1/+1
* make last thread's pthread_exit give exit(0) a consistent stateRich Felker2013-04-261-3/+13
* use atomic decrement rather than cas in pthread_exit thread countRich Felker2013-04-261-4/+1
* add comments on some of the pthread_exit logicRich Felker2013-04-261-2/+15
* always block signals in pthread_exit before decrementing thread countRich Felker2013-04-261-2/+2
* remove explicit locking to prevent __synccall setuid during posix_spawnRich Felker2013-04-261-13/+0
* remove __STDC_LIMIT_MACROS and __STDC_CONSTANT_MACROS checks in stdint.hRich Felker2013-04-221-8/+0
* fix reversed argument order x86_64 sigsetjmp's call to sigprocmaskRich Felker2013-04-221-2/+2
* comment potentially-confusing use of struct crypt_data typeRich Felker2013-04-202-1/+10
* mention bits headers in another part of copyright fileRich Felker2013-04-201-1/+1
* update copyright yearRich Felker2013-04-201-2/+2
* clarify that bits headers are included as public headersRich Felker2013-04-201-6/+6
* make dynamic linker accept : or \n as path separatorRich Felker2013-04-201-8/+8
* release notes for 0.9.10 v0.9.10Rich Felker2013-04-141-0/+52
* make ifaddrs.h expose sys/socket.hRich Felker2013-04-101-0/+1
* getifaddrs: implement proper ipv6 netmasksrofl0r2013-04-091-2/+11
* mbrtowc: do not leave mbstate_t in permanent-fail state after EILSEQRich Felker2013-04-081-1/+1
* implement mbtowc directly, not as a wrapper for mbrtowcRich Felker2013-04-081-5/+39
* optimize mbrtowcRich Felker2013-04-081-3/+2
* fix out-of-bounds access in UTF-8 decodingRich Felker2013-04-081-1/+1
* fix signalfd not to ignore flagsRich Felker2013-04-071-1/+12
* silence nonsensical warnings in timer_createRich Felker2013-04-061-2/+2
* add support for program_invocation[_short]_nameRich Felker2013-04-063-2/+18
* fix argument omission in ABI-compat weak_alias for fscanfRich Felker2013-04-061-1/+1
* Add ABI compatability aliases.Isaac Dunham2013-04-0513-0/+38
* fix type error in pthread_create, introduced with pthread_getattr_npRich Felker2013-04-061-1/+1
* getifaddrs: remove unused labelrofl0r2013-04-061-1/+0
* getifaddrs: use if_nameindex to enumerate interfacesrofl0r2013-04-051-23/+9
* getifaddrs: one less indent levelrofl0r2013-04-051-30/+28
* getifaddrs: less mallocrofl0r2013-04-051-55/+52
* include/ifaddrs.h: add prototypes for get/freeifaddrsrofl0r2013-04-051-0/+3
* add getifaddrsrofl0r2013-04-052-0/+222
* net/if.h: add some missing IFF_ constantsrofl0r2013-04-051-0/+5
* add prototype for dn_skipnameRich Felker2013-04-041-0/+1
* implement dn_skipname (legacy resolver function)Rich Felker2013-04-041-0/+12
* add arpa/tftp.hrofl0r2013-04-051-0/+31
* fix type issues in stdint.h so underlying types of 64-bit types match ABIRich Felker2013-04-047-8/+33