aboutsummaryrefslogtreecommitdiff
path: root/src/sched (unfollow)
Commit message (Expand)AuthorFilesLines
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-27internally, define time64 syscalls on x32 as the existing syscallsRich Felker1-0/+19
2019-07-27don't use futimesat syscall as utimensat fallback on x32Rich Felker1-0/+2
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-18remove mips/n32/64 stat struct hacks from syscall machineryRich Felker6-213/+36
2019-07-18decouple struct stat from kernel typeRich Felker17-4/+364
2019-07-18refactor all stat functions in terms of fstatatRich Felker4-23/+37
2019-07-18remove utterly wrong includes from mips64/n32 bits/stat.hRich Felker2-6/+0
2019-07-17use register constraint instead of memory operand for riscv64 atomicsRich Felker1-8/+8
2019-07-17fix riscv64 atomic asm constraintsRich Felker1-6/+10
2019-07-17fix riscv64 syscall asm constraintRich Felker1-1/+1