diff options
author | Rich Felker <dalias@aerifal.cx> | 2020-02-05 09:55:02 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2020-02-05 09:57:41 -0500 |
commit | b4712ba445a5cb589d1ac37785c29164cd3cf1f9 (patch) | |
tree | c548b052b39c2f25bc35bd8379871ac3b65505f9 /arch/mipsn32 | |
parent | 2cae9f59da6106b4545da85b33d1e206a1e4c1e7 (diff) | |
download | musl-b4712ba445a5cb589d1ac37785c29164cd3cf1f9.tar.gz musl-b4712ba445a5cb589d1ac37785c29164cd3cf1f9.tar.bz2 musl-b4712ba445a5cb589d1ac37785c29164cd3cf1f9.tar.xz musl-b4712ba445a5cb589d1ac37785c29164cd3cf1f9.zip |
remove legacy time32 timer[fd] syscalls from public syscall.h
this extends commit 5a105f19b5aae79dd302899e634b6b18b3dcd0d6, removing
timer[fd]_settime and timer[fd]_gettime. the timerfd ones are likely
to have been used in software that started using them before it could
rely on libc exposing functions.
Diffstat (limited to 'arch/mipsn32')
-rw-r--r-- | arch/mipsn32/bits/syscall.h.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mipsn32/bits/syscall.h.in b/arch/mipsn32/bits/syscall.h.in index 456419ce..2ad48d10 100644 --- a/arch/mipsn32/bits/syscall.h.in +++ b/arch/mipsn32/bits/syscall.h.in @@ -219,8 +219,8 @@ #define __NR_fstatfs64 6218 #define __NR_sendfile64 6219 #define __NR_timer_create 6220 -#define __NR_timer_settime 6221 -#define __NR_timer_gettime 6222 +#define __NR_timer_settime32 6221 +#define __NR_timer_gettime32 6222 #define __NR_timer_getoverrun 6223 #define __NR_timer_delete 6224 #define __NR_clock_settime32 6225 @@ -282,8 +282,8 @@ #define __NR_eventfd 6282 #define __NR_fallocate 6283 #define __NR_timerfd_create 6284 -#define __NR_timerfd_gettime 6285 -#define __NR_timerfd_settime 6286 +#define __NR_timerfd_gettime32 6285 +#define __NR_timerfd_settime32 6286 #define __NR_signalfd4 6287 #define __NR_eventfd2 6288 #define __NR_epoll_create1 6289 |