summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2019-07-29timerfd: add time64 syscall support, decouple 32-bit time_tRich Felker1-0/+42
2019-07-29sched_rr_get_interval: don't assume time_t is 32-bit on 32-bit archsRich Felker1-0/+14
2019-07-29clock_getres: don't assume time_t is 32-bit on 32-bit archsRich Felker1-0/+14
2019-07-29timer_gettime: add time64 syscall support, decouple 32-bit time_tRich Felker1-0/+16
2019-07-29remove x32 syscall timespec fixup hacksRich Felker2-43/+4
2019-07-29utimensat: add time64 syscall support, decouple 32-bit time_tRich Felker1-6/+31
2019-07-29clock_settime: add time64 syscall support, decouple 32-bit time_tRich Felker1-0/+17
2019-07-29timer_settime: add support for time64 syscall, decouple 32-bit time_tRich Felker1-0/+25
2019-07-28pselect, ppoll: add time64 syscall support, decouple 32-bit time_tRich Felker2-4/+34
2019-07-28futex wait operations: add time64 syscall support, decouple 32-bit time_tRich Felker2-3/+41
2019-07-28semtimedop: add time64 syscall support, decouple 32-bit time_tRich Felker1-2/+24
2019-07-28sigtimedwait: add time64 syscall support, decouple 32-bit time_tRich Felker1-4/+24
2019-07-28mq_timedsend, mq_timedreceive: add time64, decouple 32-bit time_tRich Felker2-0/+34
2019-07-28clock_nanosleep: add time64 syscall support, decouple 32-bit time_tRich Felker1-0/+25
2019-07-27implement settimeofday in terms of clock_settime, not old syscallRich Felker1-1/+6
2019-07-27internally, define plain syscalls, if missing, as their time64 variantsRich Felker1-0/+83
2019-07-27fix and simplify futimesat fallback in utimensatRich Felker1-6/+4
2019-07-27refactor thrd_sleep and nanosleep in terms of clock_nanosleepRich Felker4-5/+11
2019-07-21use the correct stat structure in the fstat pathSamuel Holland1-4/+4
2019-07-20refactor adjtime function using adjtimex function instead of syscallRich Felker1-1/+1
2019-07-20refactor adjtimex in terms of clock_adjtimeRich Felker2-2/+4
2019-07-19fix inadvertent introduction of extern object stxRich Felker1-1/+1
2019-07-18implement fstatat with SYS_statx, conditional on undersized kstat timeRich Felker1-2/+68
2019-07-18cleanup includes now that stat, lstat no longer make direct syscallsRich Felker2-2/+0
2019-07-18restore property that fstat(AT_FDCWD) fails with EBADFRich Felker1-0/+1
2019-07-18decouple struct stat from kernel typeRich Felker1-4/+27
2019-07-18refactor all stat functions in terms of fstatatRich Felker4-23/+37
2019-07-16fix broken lseek on x32 (x86_64/ILP32) with offsets larger than LONG_MAXRich Felker1-0/+15
2019-07-16fix broken lseek on mipsn32 with offsets larger than LONG_MAXRich Felker1-0/+20
2019-07-16use namespace-safe __lseek for __stdio_seek instead of direct syscallRich Felker3-10/+6
2019-07-13fix sigaltstack to ignore ss_size with SS_DISABLE, per POSIXJames Y Knight1-1/+1
2019-07-10use the correct attributes for ___errno_locationSamuel Holland1-0/+3
2019-07-10fix restrict violations in internal use of several functionsSamuel Holland3-10/+10
2019-07-08prevent dup2 action for posix_spawn internal pipe fdRich Felker1-0/+4
2019-07-02remove stray .end directives from powerpc[64] asmFangrui Song2-2/+0
2019-07-01ipc: prefer SYS_ipc when it is definedSzabolcs Nagy12-12/+12
2019-07-01fix deadlock in synccall after threaded forkSamuel Holland1-0/+1
2019-06-28cap getdents length argument to INT_MAXRich Felker1-0/+2
2019-06-25allow fmemopen with zero sizeRich Felker1-1/+1
2019-06-21do not use _Noreturn for a function pointer in dynamic linkerMatthew Maurer1-1/+1
2019-06-14add riscv64 architecture supportRich Felker24-0/+465
2019-05-26optimize aarch64 dynamic tlsdesc function to spill fewer registersRich Felker1-10/+7
2019-05-16fix tls offsets when p_vaddr%p_align != 0 on TLS_ABOVE_TP targetsSzabolcs Nagy1-1/+2
2019-05-16fix format strings for uid/gid values in putpwent/putgrentRich Felker2-2/+2
2019-05-05make fgetwc set error indicator for stream on encoding errorsRich Felker1-2/+8
2019-05-05allow archs to provide a 7-argument syscall if neededRich Felker1-0/+1
2019-04-20make new math code compatible with unused variable warning/errorRich Felker1-3/+6
2019-04-17math: new powSzabolcs Nagy4-303/+521
2019-04-17math: new exp and exp2Szabolcs Nagy4-480/+434
2019-04-17math: new log2Szabolcs Nagy3-106/+335