summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorLines
2019-07-30move IPC_64 from public bits/ipc.h to syscall_arch.hRich Felker-22/+16
2019-07-30select: overhaul for time64Rich Felker-13/+31
2019-07-29recvmmsg: add time64 syscall support, decouple 32-bit time_tRich Felker-0/+18
2019-07-29setitimer, getitimer: decouple time_t from longRich Felker-0/+44
2019-07-29remove duplicates of new generic bits/msg.hRich Felker-75/+0
2019-07-29use 64-bit msqid_ds layout in the generic version of bits/msg.hRich Felker-3/+0
2019-07-29duplicate generic bits/msg.h for each arch using it, in prep to changeRich Felker-0/+75
2019-07-29remove duplicates of new generic bits/sem.hRich Felker-57/+0
2019-07-29use 64-bit semid_ds layout in the generic version of bits/sem.hRich Felker-2/+0
2019-07-29collapse out byte order conditions in bits/sem.h for fixed-endian archsRich Felker-20/+0
2019-07-29duplicate generic bits/sem.h for each arch using it, in prep to changeRich Felker-0/+112
2019-07-29extricate bits/sem.h from x32 time_t hackRich Felker-25/+36
2019-07-29remove trailing newlines from various versions of bits/shm.hRich Felker-9/+0
2019-07-29remove duplicates of new generic bits/shm.hRich Felker-123/+0
2019-07-29use 64-bit shmid_ds layout in the generic version of bits/shm.hRich Felker-3/+0
2019-07-29duplicate generic bits/shm.h for each arch using it, in prep to changeRich Felker-0/+140
2019-07-29timerfd: add time64 syscall support, decouple 32-bit time_tRich Felker-0/+42
2019-07-29sched_rr_get_interval: don't assume time_t is 32-bit on 32-bit archsRich Felker-0/+14
2019-07-29clock_getres: don't assume time_t is 32-bit on 32-bit archsRich Felker-0/+14
2019-07-29timer_gettime: add time64 syscall support, decouple 32-bit time_tRich Felker-0/+16
2019-07-29remove x32 syscall timespec fixup hacksRich Felker-101/+4
2019-07-29utimensat: add time64 syscall support, decouple 32-bit time_tRich Felker-6/+31
2019-07-29clock_settime: add time64 syscall support, decouple 32-bit time_tRich Felker-0/+17
2019-07-29timer_settime: add support for time64 syscall, decouple 32-bit time_tRich Felker-0/+25
2019-07-28pselect, ppoll: add time64 syscall support, decouple 32-bit time_tRich Felker-4/+34
2019-07-28futex wait operations: add time64 syscall support, decouple 32-bit time_tRich Felker-3/+41
2019-07-28semtimedop: add time64 syscall support, decouple 32-bit time_tRich Felker-2/+24
2019-07-28sigtimedwait: add time64 syscall support, decouple 32-bit time_tRich Felker-4/+24
2019-07-28mq_timedsend, mq_timedreceive: add time64, decouple 32-bit time_tRich Felker-0/+34
2019-07-28clock_nanosleep: add time64 syscall support, decouple 32-bit time_tRich Felker-0/+25
2019-07-27implement settimeofday in terms of clock_settime, not old syscallRich Felker-1/+6
2019-07-27internally, define plain syscalls, if missing, as their time64 variantsRich Felker-0/+83
2019-07-27internally, define time64 syscalls on x32 as the existing syscallsRich Felker-0/+19
2019-07-27don't use futimesat syscall as utimensat fallback on x32Rich Felker-0/+2
2019-07-27fix and simplify futimesat fallback in utimensatRich Felker-6/+4
2019-07-27refactor thrd_sleep and nanosleep in terms of clock_nanosleepRich Felker-5/+11
2019-07-21use the correct stat structure in the fstat pathSamuel Holland-4/+4
2019-07-20refactor adjtime function using adjtimex function instead of syscallRich Felker-1/+1
2019-07-20refactor adjtimex in terms of clock_adjtimeRich Felker-2/+4
2019-07-19fix inadvertent introduction of extern object stxRich Felker-1/+1
2019-07-18implement fstatat with SYS_statx, conditional on undersized kstat timeRich Felker-2/+68
2019-07-18cleanup includes now that stat, lstat no longer make direct syscallsRich Felker-2/+0
2019-07-18restore property that fstat(AT_FDCWD) fails with EBADFRich Felker-0/+1
2019-07-18remove mips/n32/64 stat struct hacks from syscall machineryRich Felker-213/+36
2019-07-18decouple struct stat from kernel typeRich Felker-4/+364
2019-07-18refactor all stat functions in terms of fstatatRich Felker-23/+37
2019-07-18remove utterly wrong includes from mips64/n32 bits/stat.hRich Felker-6/+0
2019-07-17use register constraint instead of memory operand for riscv64 atomicsRich Felker-8/+8
2019-07-17fix riscv64 atomic asm constraintsRich Felker-6/+10
2019-07-17fix riscv64 syscall asm constraintRich Felker-1/+1