about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
* move IPC_STAT definition to a new bits/ipcstat.h fileRich Felker2019-08-0211-3/+11
* fix missing declarations for pthread_join extensions in source fileRich Felker2019-08-021-0/+1
* allow archs to define IPC_STAT, propagate time64 bit to other macrosRich Felker2019-08-024-6/+8
* clock_gettime: add time64 syscall support, decouple 32-bit time_tRich Felker2019-08-021-0/+19
* clock_adjtime: add time64 support, decouple 32-bit time_t, fix x32Rich Felker2019-08-021-0/+110
* ioctl: add fallback for new time64 SIOCGSTAMP[NS]Rich Felker2019-07-313-1/+34
* get/setsockopt: add fallback for new time64 SO_RCVTIMEO/SO_SNDTIMEORich Felker2019-07-318-2/+79
* make __socketcall analogous to __syscall, error-returningRich Felker2019-07-311-6/+6
* sysvipc: overhaul {sem,shm,msg}ctl for time64Rich Felker2019-07-314-12/+41
* fix semctl with SEM_STAT_ANYRich Felker2019-07-311-1/+1
* remove gratuitously-different arch-specific bits/ipc.h filesRich Felker2019-07-303-36/+0
* remove arch-specific bits/ipc.h that are identical to genericRich Felker2019-07-302-22/+0
* move IPC_64 from public bits/ipc.h to syscall_arch.hRich Felker2019-07-3016-22/+16
* select: overhaul for time64Rich Felker2019-07-301-13/+31
* recvmmsg: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-291-0/+18
* setitimer, getitimer: decouple time_t from longRich Felker2019-07-294-0/+44
* remove duplicates of new generic bits/msg.hRich Felker2019-07-296-75/+0
* use 64-bit msqid_ds layout in the generic version of bits/msg.hRich Felker2019-07-291-3/+0
* duplicate generic bits/msg.h for each arch using it, in prep to changeRich Felker2019-07-295-0/+75
* remove duplicates of new generic bits/sem.hRich Felker2019-07-295-57/+0
* use 64-bit semid_ds layout in the generic version of bits/sem.hRich Felker2019-07-291-2/+0
* collapse out byte order conditions in bits/sem.h for fixed-endian archsRich Felker2019-07-294-20/+0
* duplicate generic bits/sem.h for each arch using it, in prep to changeRich Felker2019-07-297-0/+112
* extricate bits/sem.h from x32 time_t hackRich Felker2019-07-297-25/+36
* remove trailing newlines from various versions of bits/shm.hRich Felker2019-07-299-9/+0
* remove duplicates of new generic bits/shm.hRich Felker2019-07-295-123/+0
* use 64-bit shmid_ds layout in the generic version of bits/shm.hRich Felker2019-07-291-3/+0
* duplicate generic bits/shm.h for each arch using it, in prep to changeRich Felker2019-07-295-0/+140
* 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-293-101/+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
* internally, define time64 syscalls on x32 as the existing syscallsRich Felker2019-07-271-0/+19
* don't use futimesat syscall as utimensat fallback on x32Rich Felker2019-07-271-0/+2
* 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