about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* add IEEE binary128 long double support to floatscanSzabolcs Nagy2015-02-091-1/+9
* math: fix fmodl for IEEE binary128Szabolcs Nagy2015-02-091-1/+1
* simplify armhf fesetenvSzabolcs Nagy2015-02-081-1/+0
* fix fesetenv(FE_DFL_ENV) on mipsSzabolcs Nagy2015-02-081-1/+3
* math: fix __fpclassifyl(-0.0) for IEEE binary128Szabolcs Nagy2015-02-081-3/+2
* add parenthesis in fma.c to clarify intent and silence warningsSzabolcs Nagy2015-02-081-1/+1
* make getaddrinfo support SOCK_RAW and other socket typesRich Felker2015-02-074-34/+42
* remove cruft from x86_64 syscall.hSzabolcs Nagy2015-02-071-0/+3
* fix failure of fchmodat to report EOPNOTSUPP in the race pathRich Felker2015-02-051-2/+4
* fix fd leak race (missing O_CLOEXEC) in fchmodatRich Felker2015-02-041-1/+1
* make execvp continue PATH search on EACCES rather than issuing an errrorRich Felker2015-02-031-1/+4
* fix missing memory barrier in cancellation signal handlerRich Felker2015-02-031-0/+1
* make fsync, fdatasync, and msync cancellation pointsTrutz Behn2015-01-303-3/+3
* fix missing comma in sh setjmp asmTrutz Behn2015-01-301-1/+1
* fix erroneous return of partial username matches by getspnam[_r]Rich Felker2015-01-211-1/+1
* simplify part of getopt_longRich Felker2015-01-211-13/+11
* always set optarg in getopt_longRich Felker2015-01-211-1/+1
* overhaul __synccall and fix AS-safety and other issues in set*idRich Felker2015-01-152-45/+138
* add FUTEX_PRIVATE macro to internal futex.hRich Felker2015-01-151-0/+2
* suppress EINTR in sem_wait and sem_timedwaitRich Felker2015-01-151-1/+1
* for multithreaded set*id/setrlimit, handle case where callback does not runRich Felker2015-01-152-4/+4
* increase syslog message limit from 256 to 1024Rich Felker2015-01-131-1/+1
* remove rlimit hacks from multi-threaded set*id() codeRich Felker2015-01-121-23/+15
* simplify ctermidRich Felker2015-01-121-14/+2
* fix regression in getopt_long support for non-option argumentsRich Felker2015-01-111-7/+6
* check for connect failure in syslog log openingRich Felker2015-01-091-2/+6
* overhaul forkpty function using new login_ttyRich Felker2014-12-211-26/+45
* block pthread cancellation in openpty functionRich Felker2014-12-201-9/+14
* don't write openpty results until success is determinedRich Felker2014-12-201-10/+12
* add login_tty functionFelix Janda2014-12-201-0/+14
* set optopt in getopt_longRich Felker2014-12-201-0/+1
* add error message printing to getopt_long and make related improvementsRich Felker2014-12-202-6/+32
* support translation for getopt error messagesRich Felker2014-12-201-0/+2
* fix stderr locking and ferror semantics in getopt message printingRich Felker2014-12-191-12/+16
* use tkill instead of tgkill in implementing raiseRich Felker2014-12-181-3/+2
* don't suppress sign output for NANs in printfRich Felker2014-12-181-1/+1
* fix return value computation in one code path of wcsnrtombsRich Felker2014-12-181-1/+1
* provide CMPLX macros in implementation-internal libm.hRich Felker2014-12-171-0/+12
* implement FNM_CASEFOLD extension to fnmatch functionNagy Szabolcs2014-12-171-11/+25
* add basic dns record parsing functionsRich Felker2014-12-171-0/+171
* correctly handle write errors encountered by printf-family functionsRich Felker2014-12-172-2/+12
* simplify getopt_long argv permutation loop logicRich Felker2014-12-131-3/+1
* fix handling of "--" with getopt_long argv permutationRich Felker2014-12-131-1/+0
* accept null longopts pointer in getopt_longRich Felker2014-12-111-1/+1
* fix getopt handling of initial '+' in optstringRich Felker2014-12-101-1/+1
* support abbreviated options in getopt_longRich Felker2014-12-101-7/+18
* support options after non-option arguments in getopt_long (argv permutation)Rich Felker2014-12-101-0/+39
* use direct syscall rather than write function in posix_spawn childRich Felker2014-12-051-1/+1
* don't fail posix_spawn on failed closeRich Felker2014-12-051-2/+1
* fix getopt handling of ':' modifier for multibyte option charactersRich Felker2014-12-041-4/+9