umtx: drop incorrect timespec32 definition

This works for amd64, but none others -- drop it, because we already have a
proper definition in sys/compat/freebsd32/freebsd32.h that correctly uses
time32_t.

MFC after:	1 week
This commit is contained in:
Kyle Evans 2020-11-11 22:35:23 +00:00
parent 8054320e07
commit 38033780a3

View File

@ -76,6 +76,7 @@ __FBSDID("$FreeBSD$");
#include <machine/cpu.h>
#ifdef COMPAT_FREEBSD32
#include <compat/freebsd32/freebsd32.h>
#include <compat/freebsd32/freebsd32_proto.h>
#endif
@ -4128,11 +4129,6 @@ sys__umtx_op(struct thread *td, struct _umtx_op_args *uap)
#ifdef COMPAT_FREEBSD32
struct timespec32 {
int32_t tv_sec;
int32_t tv_nsec;
};
struct umtx_time32 {
struct timespec32 timeout;
uint32_t flags;