about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* timerfd: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-291-0/+42
* sched_rr_get_interval: don't assume time_t is 32-bit on 32-bit archsRich Felker2019-07-291-0/+14
* clock_getres: don't assume time_t is 32-bit on 32-bit archsRich Felker2019-07-291-0/+14
* timer_gettime: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-291-0/+16
* remove x32 syscall timespec fixup hacksRich Felker2019-07-292-43/+4
* utimensat: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-291-6/+31
* clock_settime: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-291-0/+17
* timer_settime: add support for time64 syscall, decouple 32-bit time_tRich Felker2019-07-291-0/+25
* pselect, ppoll: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-282-4/+34
* futex wait operations: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-282-3/+41
* semtimedop: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-281-2/+24
* sigtimedwait: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-281-4/+24
* mq_timedsend, mq_timedreceive: add time64, decouple 32-bit time_tRich Felker2019-07-282-0/+34
* clock_nanosleep: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-281-0/+25
* implement settimeofday in terms of clock_settime, not old syscallRich Felker2019-07-271-1/+6
* internally, define plain syscalls, if missing, as their time64 variantsRich Felker2019-07-271-0/+83
* fix and simplify futimesat fallback in utimensatRich Felker2019-07-271-6/+4
* refactor thrd_sleep and nanosleep in terms of clock_nanosleepRich Felker2019-07-274-5/+11
* use the correct stat structure in the fstat pathSamuel Holland2019-07-211-4/+4
* refactor adjtime function using adjtimex function instead of syscallRich Felker2019-07-201-1/+1
* refactor adjtimex in terms of clock_adjtimeRich Felker2019-07-202-2/+4
* fix inadvertent introduction of extern object stxRich Felker2019-07-191-1/+1
* implement fstatat with SYS_statx, conditional on undersized kstat timeRich Felker2019-07-181-2/+68
* cleanup includes now that stat, lstat no longer make direct syscallsRich Felker2019-07-182-2/+0
* restore property that fstat(AT_FDCWD) fails with EBADFRich Felker2019-07-181-0/+1
* decouple struct stat from kernel typeRich Felker2019-07-181-4/+27
* refactor all stat functions in terms of fstatatRich Felker2019-07-184-23/+37
* fix broken lseek on x32 (x86_64/ILP32) with offsets larger than LONG_MAXRich Felker2019-07-161-0/+15
* fix broken lseek on mipsn32 with offsets larger than LONG_MAXRich Felker2019-07-161-0/+20
* use namespace-safe __lseek for __stdio_seek instead of direct syscallRich Felker2019-07-163-10/+6
* fix sigaltstack to ignore ss_size with SS_DISABLE, per POSIXJames Y Knight2019-07-131-1/+1
* use the correct attributes for ___errno_locationSamuel Holland2019-07-101-0/+3
* fix restrict violations in internal use of several functionsSamuel Holland2019-07-103-10/+10
* prevent dup2 action for posix_spawn internal pipe fdRich Felker2019-07-081-0/+4
* remove stray .end directives from powerpc[64] asmFangrui Song2019-07-022-2/+0
* ipc: prefer SYS_ipc when it is definedSzabolcs Nagy2019-07-0112-12/+12
* fix deadlock in synccall after threaded forkSamuel Holland2019-07-011-0/+1
* cap getdents length argument to INT_MAXRich Felker2019-06-281-0/+2
* allow fmemopen with zero sizeRich Felker2019-06-251-1/+1
* do not use _Noreturn for a function pointer in dynamic linkerMatthew Maurer2019-06-211-1/+1
* add riscv64 architecture supportRich Felker2019-06-1424-0/+465
* optimize aarch64 dynamic tlsdesc function to spill fewer registersRich Felker2019-05-261-10/+7
* fix tls offsets when p_vaddr%p_align != 0 on TLS_ABOVE_TP targetsSzabolcs Nagy2019-05-161-1/+2
* fix format strings for uid/gid values in putpwent/putgrentRich Felker2019-05-162-2/+2
* make fgetwc set error indicator for stream on encoding errorsRich Felker2019-05-051-2/+8
* allow archs to provide a 7-argument syscall if neededRich Felker2019-05-051-0/+1
* make new math code compatible with unused variable warning/errorRich Felker2019-04-201-3/+6
* math: new powSzabolcs Nagy2019-04-174-303/+521
* math: new exp and exp2Szabolcs Nagy2019-04-174-480/+434
* math: new log2Szabolcs Nagy2019-04-173-106/+335