mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-27 08:00:11 +00:00
linux(4): Fix timeout parameter of rt_sigtimedwait syscall, which is
timespec not a timeval. MFC after: 2 weeks
This commit is contained in:
parent
56b187005c
commit
0f8dab4540
@ -839,7 +839,7 @@
|
||||
int linux_rt_sigtimedwait(
|
||||
l_sigset_t *mask,
|
||||
l_siginfo_t *ptr,
|
||||
struct l_timeval *timeout,
|
||||
struct l_timespec *timeout,
|
||||
l_size_t sigsetsize
|
||||
);
|
||||
}
|
||||
|
@ -949,7 +949,7 @@
|
||||
int linux_rt_sigtimedwait(
|
||||
l_sigset_t *mask,
|
||||
l_siginfo_t *ptr,
|
||||
struct l_timeval *timeout,
|
||||
struct l_timespec *timeout,
|
||||
l_size_t sigsetsize
|
||||
);
|
||||
}
|
||||
|
@ -804,7 +804,7 @@
|
||||
int linux_rt_sigtimedwait(
|
||||
l_sigset_t *mask,
|
||||
l_siginfo_t *ptr,
|
||||
struct l_timeval *timeout,
|
||||
struct l_timespec *timeout,
|
||||
l_size_t sigsetsize
|
||||
);
|
||||
}
|
||||
|
@ -829,7 +829,7 @@
|
||||
int linux_rt_sigtimedwait(
|
||||
l_sigset_t *mask,
|
||||
l_siginfo_t *ptr,
|
||||
struct l_timeval *timeout,
|
||||
struct l_timespec *timeout,
|
||||
l_size_t sigsetsize
|
||||
);
|
||||
}
|
||||
|
@ -51,6 +51,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <machine/../linux/linux_proto.h>
|
||||
#endif
|
||||
#include <compat/linux/linux_signal.h>
|
||||
#include <compat/linux/linux_timer.h>
|
||||
#include <compat/linux/linux_util.h>
|
||||
#include <compat/linux/linux_emul.h>
|
||||
#include <compat/linux/linux_misc.h>
|
||||
@ -392,9 +393,8 @@ linux_rt_sigtimedwait(struct thread *td,
|
||||
struct linux_rt_sigtimedwait_args *args)
|
||||
{
|
||||
int error, sig;
|
||||
l_timeval ltv;
|
||||
struct timeval tv;
|
||||
struct timespec ts, *tsa;
|
||||
struct l_timespec lts;
|
||||
l_sigset_t lset;
|
||||
sigset_t bset;
|
||||
l_siginfo_t linfo;
|
||||
@ -409,27 +409,15 @@ linux_rt_sigtimedwait(struct thread *td,
|
||||
|
||||
tsa = NULL;
|
||||
if (args->timeout) {
|
||||
if ((error = copyin(args->timeout, <v, sizeof(ltv))))
|
||||
if ((error = copyin(args->timeout, <s, sizeof(lts))))
|
||||
return (error);
|
||||
error = linux_to_native_timespec(&ts, <s);
|
||||
if (error != 0)
|
||||
return (error);
|
||||
tv.tv_sec = (long)ltv.tv_sec;
|
||||
tv.tv_usec = (suseconds_t)ltv.tv_usec;
|
||||
if (itimerfix(&tv)) {
|
||||
/*
|
||||
* The timeout was invalid. Convert it to something
|
||||
* valid that will act as it does under Linux.
|
||||
*/
|
||||
tv.tv_sec += tv.tv_usec / 1000000;
|
||||
tv.tv_usec %= 1000000;
|
||||
if (tv.tv_usec < 0) {
|
||||
tv.tv_sec -= 1;
|
||||
tv.tv_usec += 1000000;
|
||||
}
|
||||
if (tv.tv_sec < 0)
|
||||
timevalclear(&tv);
|
||||
}
|
||||
TIMEVAL_TO_TIMESPEC(&tv, &ts);
|
||||
tsa = &ts;
|
||||
}
|
||||
} else
|
||||
tsa = NULL;
|
||||
|
||||
error = kern_sigtimedwait(td, bset, &info, tsa);
|
||||
if (error)
|
||||
return (error);
|
||||
|
@ -974,7 +974,7 @@
|
||||
int linux_rt_sigtimedwait(
|
||||
l_sigset_t *mask,
|
||||
l_siginfo_t *ptr,
|
||||
struct l_timeval *timeout,
|
||||
struct l_timespec *timeout,
|
||||
l_size_t sigsetsize
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user