Deleted Added
full compact
26c26
< * $FreeBSD: head/sys/compat/freebsd32/freebsd32.h 162551 2006-09-22 15:04:28Z davidxu $
---
> * $FreeBSD: head/sys/compat/freebsd32/freebsd32.h 174377 2007-12-06 23:11:27Z jhb $
77a78,82
> struct itimerval32 {
> struct timeval32 it_interval;
> struct timeval32 it_value;
> };
>
105a111,161
> struct kevent32 {
> u_int32_t ident; /* identifier for this event */
> short filter; /* filter for event */
> u_short flags;
> u_int fflags;
> int32_t data;
> u_int32_t udata; /* opaque user data identifier */
> };
>
> struct iovec32 {
> u_int32_t iov_base;
> int iov_len;
> };
>
> struct msghdr32 {
> u_int32_t msg_name;
> socklen_t msg_namelen;
> u_int32_t msg_iov;
> int msg_iovlen;
> u_int32_t msg_control;
> socklen_t msg_controllen;
> int msg_flags;
> };
>
> struct stat32 {
> dev_t st_dev;
> ino_t st_ino;
> mode_t st_mode;
> nlink_t st_nlink;
> uid_t st_uid;
> gid_t st_gid;
> dev_t st_rdev;
> struct timespec32 st_atimespec;
> struct timespec32 st_mtimespec;
> struct timespec32 st_ctimespec;
> off_t st_size;
> int64_t st_blocks;
> u_int32_t st_blksize;
> u_int32_t st_flags;
> u_int32_t st_gen;
> struct timespec32 st_birthtimespec;
> unsigned int :(8 / 2) * (16 - (int)sizeof(struct timespec32));
> unsigned int :(8 / 2) * (16 - (int)sizeof(struct timespec32));
> };
>
> struct sigaction32 {
> u_int32_t sa_u;
> int sa_flags;
> sigset_t sa_mask;
> };
>