Author: ed
Date: Fri May 25 21:52:57 2012
New Revision: 236027
URL: http://svn.freebsd.org/changeset/base/236027

Log:
  Regenerate system call tables.

Modified:
  head/sys/amd64/linux32/linux32_proto.h
  head/sys/amd64/linux32/linux32_syscall.h
  head/sys/amd64/linux32/linux32_syscalls.c
  head/sys/amd64/linux32/linux32_sysent.c
  head/sys/amd64/linux32/linux32_systrace_args.c
  head/sys/compat/freebsd32/freebsd32_proto.h
  head/sys/compat/freebsd32/freebsd32_syscall.h
  head/sys/compat/freebsd32/freebsd32_syscalls.c
  head/sys/compat/freebsd32/freebsd32_sysent.c
  head/sys/compat/freebsd32/freebsd32_systrace_args.c
  head/sys/kern/init_sysent.c
  head/sys/kern/syscalls.c
  head/sys/kern/systrace_args.c
  head/sys/sys/syscall.h
  head/sys/sys/syscall.mk
  head/sys/sys/sysproto.h

Modified: head/sys/amd64/linux32/linux32_proto.h
==============================================================================
--- head/sys/amd64/linux32/linux32_proto.h      Fri May 25 21:50:48 2012        
(r236026)
+++ head/sys/amd64/linux32/linux32_proto.h      Fri May 25 21:52:57 2012        
(r236027)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 234359 
2012-04-16 23:16:18Z jkim 
+ * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 236026 
2012-05-25 21:50:48Z ed 
  */
 
 #ifndef _LINUX_SYSPROTO_H_
@@ -60,8 +60,8 @@ struct linux_unlink_args {
 };
 struct linux_execve_args {
        char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
-       char argp_l_[PADL_(u_int32_t *)]; u_int32_t * argp; char 
argp_r_[PADR_(u_int32_t *)];
-       char envp_l_[PADL_(u_int32_t *)]; u_int32_t * envp; char 
envp_r_[PADR_(u_int32_t *)];
+       char argp_l_[PADL_(uint32_t *)]; uint32_t * argp; char 
argp_r_[PADR_(uint32_t *)];
+       char envp_l_[PADL_(uint32_t *)]; uint32_t * envp; char 
envp_r_[PADR_(uint32_t *)];
 };
 struct linux_chdir_args {
        char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];

Modified: head/sys/amd64/linux32/linux32_syscall.h
==============================================================================
--- head/sys/amd64/linux32/linux32_syscall.h    Fri May 25 21:50:48 2012        
(r236026)
+++ head/sys/amd64/linux32/linux32_syscall.h    Fri May 25 21:52:57 2012        
(r236027)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 234359 
2012-04-16 23:16:18Z jkim 
+ * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 236026 
2012-05-25 21:50:48Z ed 
  */
 
 #define        LINUX_SYS_exit  1

Modified: head/sys/amd64/linux32/linux32_syscalls.c
==============================================================================
--- head/sys/amd64/linux32/linux32_syscalls.c   Fri May 25 21:50:48 2012        
(r236026)
+++ head/sys/amd64/linux32/linux32_syscalls.c   Fri May 25 21:52:57 2012        
(r236027)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 234359 
2012-04-16 23:16:18Z jkim 
+ * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 236026 
2012-05-25 21:50:48Z ed 
  */
 
 const char *linux_syscallnames[] = {

Modified: head/sys/amd64/linux32/linux32_sysent.c
==============================================================================
--- head/sys/amd64/linux32/linux32_sysent.c     Fri May 25 21:50:48 2012        
(r236026)
+++ head/sys/amd64/linux32/linux32_sysent.c     Fri May 25 21:52:57 2012        
(r236027)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 234359 
2012-04-16 23:16:18Z jkim 
+ * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 236026 
2012-05-25 21:50:48Z ed 
  */
 
 #include "opt_compat.h"

Modified: head/sys/amd64/linux32/linux32_systrace_args.c
==============================================================================
--- head/sys/amd64/linux32/linux32_systrace_args.c      Fri May 25 21:50:48 
2012        (r236026)
+++ head/sys/amd64/linux32/linux32_systrace_args.c      Fri May 25 21:52:57 
2012        (r236027)
@@ -94,8 +94,8 @@ systrace_args(int sysnum, void *params, 
        case 11: {
                struct linux_execve_args *p = params;
                uarg[0] = (intptr_t) p->path; /* char * */
-               uarg[1] = (intptr_t) p->argp; /* u_int32_t * */
-               uarg[2] = (intptr_t) p->envp; /* u_int32_t * */
+               uarg[1] = (intptr_t) p->argp; /* uint32_t * */
+               uarg[2] = (intptr_t) p->envp; /* uint32_t * */
                *n_args = 3;
                break;
        }
@@ -2401,10 +2401,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "char *";
                        break;
                case 1:
-                       p = "u_int32_t *";
+                       p = "uint32_t *";
                        break;
                case 2:
-                       p = "u_int32_t *";
+                       p = "uint32_t *";
                        break;
                default:
                        break;

Modified: head/sys/compat/freebsd32/freebsd32_proto.h
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_proto.h Fri May 25 21:50:48 2012        
(r236026)
+++ head/sys/compat/freebsd32/freebsd32_proto.h Fri May 25 21:52:57 2012        
(r236027)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 227776 
2011-11-21 01:26:10Z lstewart 
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 236026 
2012-05-25 21:50:48Z ed 
  */
 
 #ifndef _FREEBSD32_SYSPROTO_H_
@@ -54,11 +54,11 @@ struct freebsd32_sendmsg_args {
 };
 struct freebsd32_recvfrom_args {
        char s_l_[PADL_(int)]; int s; char s_r_[PADR_(int)];
-       char buf_l_[PADL_(u_int32_t)]; u_int32_t buf; char 
buf_r_[PADR_(u_int32_t)];
-       char len_l_[PADL_(u_int32_t)]; u_int32_t len; char 
len_r_[PADR_(u_int32_t)];
+       char buf_l_[PADL_(uint32_t)]; uint32_t buf; char 
buf_r_[PADR_(uint32_t)];
+       char len_l_[PADL_(uint32_t)]; uint32_t len; char 
len_r_[PADR_(uint32_t)];
        char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
-       char from_l_[PADL_(u_int32_t)]; u_int32_t from; char 
from_r_[PADR_(u_int32_t)];
-       char fromlenaddr_l_[PADL_(u_int32_t)]; u_int32_t fromlenaddr; char 
fromlenaddr_r_[PADR_(u_int32_t)];
+       char from_l_[PADL_(uint32_t)]; uint32_t from; char 
from_r_[PADR_(uint32_t)];
+       char fromlenaddr_l_[PADL_(uint32_t)]; uint32_t fromlenaddr; char 
fromlenaddr_r_[PADR_(uint32_t)];
 };
 struct ofreebsd32_sigpending_args {
        register_t dummy;
@@ -74,8 +74,8 @@ struct freebsd32_ioctl_args {
 };
 struct freebsd32_execve_args {
        char fname_l_[PADL_(char *)]; char * fname; char fname_r_[PADR_(char 
*)];
-       char argv_l_[PADL_(u_int32_t *)]; u_int32_t * argv; char 
argv_r_[PADR_(u_int32_t *)];
-       char envv_l_[PADL_(u_int32_t *)]; u_int32_t * envv; char 
envv_r_[PADR_(u_int32_t *)];
+       char argv_l_[PADL_(uint32_t *)]; uint32_t * argv; char 
argv_r_[PADR_(uint32_t *)];
+       char envv_l_[PADL_(uint32_t *)]; uint32_t * envv; char 
envv_r_[PADR_(uint32_t *)];
 };
 struct freebsd32_mprotect_args {
        char addr_l_[PADL_(const void *)]; const void * addr; char 
addr_r_[PADR_(const void *)];
@@ -175,9 +175,9 @@ struct freebsd32_sysctl_args {
        char name_l_[PADL_(int *)]; int * name; char name_r_[PADR_(int *)];
        char namelen_l_[PADL_(u_int)]; u_int namelen; char 
namelen_r_[PADR_(u_int)];
        char old_l_[PADL_(void *)]; void * old; char old_r_[PADR_(void *)];
-       char oldlenp_l_[PADL_(u_int32_t *)]; u_int32_t * oldlenp; char 
oldlenp_r_[PADR_(u_int32_t *)];
+       char oldlenp_l_[PADL_(uint32_t *)]; uint32_t * oldlenp; char 
oldlenp_r_[PADR_(uint32_t *)];
        char new_l_[PADL_(void *)]; void * new; char new_r_[PADR_(void *)];
-       char newlen_l_[PADL_(u_int32_t)]; u_int32_t newlen; char 
newlen_r_[PADR_(u_int32_t)];
+       char newlen_l_[PADL_(uint32_t)]; uint32_t newlen; char 
newlen_r_[PADR_(uint32_t)];
 };
 struct freebsd32_futimes_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
@@ -232,15 +232,15 @@ struct freebsd32_preadv_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char iovp_l_[PADL_(struct iovec32 *)]; struct iovec32 * iovp; char 
iovp_r_[PADR_(struct iovec32 *)];
        char iovcnt_l_[PADL_(u_int)]; u_int iovcnt; char 
iovcnt_r_[PADR_(u_int)];
-       char offset1_l_[PADL_(u_int32_t)]; u_int32_t offset1; char 
offset1_r_[PADR_(u_int32_t)];
-       char offset2_l_[PADL_(u_int32_t)]; u_int32_t offset2; char 
offset2_r_[PADR_(u_int32_t)];
+       char offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char 
offset1_r_[PADR_(uint32_t)];
+       char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char 
offset2_r_[PADR_(uint32_t)];
 };
 struct freebsd32_pwritev_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char iovp_l_[PADL_(struct iovec32 *)]; struct iovec32 * iovp; char 
iovp_r_[PADR_(struct iovec32 *)];
        char iovcnt_l_[PADL_(u_int)]; u_int iovcnt; char 
iovcnt_r_[PADR_(u_int)];
-       char offset1_l_[PADL_(u_int32_t)]; u_int32_t offset1; char 
offset1_r_[PADR_(u_int32_t)];
-       char offset2_l_[PADL_(u_int32_t)]; u_int32_t offset2; char 
offset2_r_[PADR_(u_int32_t)];
+       char offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char 
offset1_r_[PADR_(uint32_t)];
+       char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char 
offset2_r_[PADR_(uint32_t)];
 };
 struct freebsd32_modstat_args {
        char modid_l_[PADL_(int)]; int modid; char modid_r_[PADR_(int)];
@@ -309,8 +309,8 @@ struct freebsd32_nmount_args {
 struct freebsd32_sendfile_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char s_l_[PADL_(int)]; int s; char s_r_[PADR_(int)];
-       char offset1_l_[PADL_(u_int32_t)]; u_int32_t offset1; char 
offset1_r_[PADR_(u_int32_t)];
-       char offset2_l_[PADL_(u_int32_t)]; u_int32_t offset2; char 
offset2_r_[PADR_(u_int32_t)];
+       char offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char 
offset1_r_[PADR_(uint32_t)];
+       char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char 
offset2_r_[PADR_(uint32_t)];
        char nbytes_l_[PADL_(size_t)]; size_t nbytes; char 
nbytes_r_[PADR_(size_t)];
        char hdtr_l_[PADL_(struct sf_hdtr32 *)]; struct sf_hdtr32 * hdtr; char 
hdtr_r_[PADR_(struct sf_hdtr32 *)];
        char sbytes_l_[PADL_(off_t *)]; off_t * sbytes; char 
sbytes_r_[PADR_(off_t *)];
@@ -404,16 +404,16 @@ struct freebsd32_pread_args {
        char buf_l_[PADL_(void *)]; void * buf; char buf_r_[PADR_(void *)];
        char nbyte_l_[PADL_(size_t)]; size_t nbyte; char 
nbyte_r_[PADR_(size_t)];
        char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
-       char offset1_l_[PADL_(u_int32_t)]; u_int32_t offset1; char 
offset1_r_[PADR_(u_int32_t)];
-       char offset2_l_[PADL_(u_int32_t)]; u_int32_t offset2; char 
offset2_r_[PADR_(u_int32_t)];
+       char offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char 
offset1_r_[PADR_(uint32_t)];
+       char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char 
offset2_r_[PADR_(uint32_t)];
 };
 struct freebsd32_pwrite_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char buf_l_[PADL_(const void *)]; const void * buf; char 
buf_r_[PADR_(const void *)];
        char nbyte_l_[PADL_(size_t)]; size_t nbyte; char 
nbyte_r_[PADR_(size_t)];
        char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
-       char offset1_l_[PADL_(u_int32_t)]; u_int32_t offset1; char 
offset1_r_[PADR_(u_int32_t)];
-       char offset2_l_[PADL_(u_int32_t)]; u_int32_t offset2; char 
offset2_r_[PADR_(u_int32_t)];
+       char offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char 
offset1_r_[PADR_(uint32_t)];
+       char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char 
offset2_r_[PADR_(uint32_t)];
 };
 struct freebsd32_mmap_args {
        char addr_l_[PADL_(caddr_t)]; caddr_t addr; char 
addr_r_[PADR_(caddr_t)];
@@ -422,42 +422,42 @@ struct freebsd32_mmap_args {
        char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
-       char pos1_l_[PADL_(u_int32_t)]; u_int32_t pos1; char 
pos1_r_[PADR_(u_int32_t)];
-       char pos2_l_[PADL_(u_int32_t)]; u_int32_t pos2; char 
pos2_r_[PADR_(u_int32_t)];
+       char pos1_l_[PADL_(uint32_t)]; uint32_t pos1; char 
pos1_r_[PADR_(uint32_t)];
+       char pos2_l_[PADL_(uint32_t)]; uint32_t pos2; char 
pos2_r_[PADR_(uint32_t)];
 };
 struct freebsd32_lseek_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
-       char offset1_l_[PADL_(u_int32_t)]; u_int32_t offset1; char 
offset1_r_[PADR_(u_int32_t)];
-       char offset2_l_[PADL_(u_int32_t)]; u_int32_t offset2; char 
offset2_r_[PADR_(u_int32_t)];
+       char offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char 
offset1_r_[PADR_(uint32_t)];
+       char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char 
offset2_r_[PADR_(uint32_t)];
        char whence_l_[PADL_(int)]; int whence; char whence_r_[PADR_(int)];
 };
 struct freebsd32_truncate_args {
        char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
        char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
-       char length1_l_[PADL_(u_int32_t)]; u_int32_t length1; char 
length1_r_[PADR_(u_int32_t)];
-       char length2_l_[PADL_(u_int32_t)]; u_int32_t length2; char 
length2_r_[PADR_(u_int32_t)];
+       char length1_l_[PADL_(uint32_t)]; uint32_t length1; char 
length1_r_[PADR_(uint32_t)];
+       char length2_l_[PADL_(uint32_t)]; uint32_t length2; char 
length2_r_[PADR_(uint32_t)];
 };
 struct freebsd32_ftruncate_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
-       char length1_l_[PADL_(u_int32_t)]; u_int32_t length1; char 
length1_r_[PADR_(u_int32_t)];
-       char length2_l_[PADL_(u_int32_t)]; u_int32_t length2; char 
length2_r_[PADR_(u_int32_t)];
+       char length1_l_[PADL_(uint32_t)]; uint32_t length1; char 
length1_r_[PADR_(uint32_t)];
+       char length2_l_[PADL_(uint32_t)]; uint32_t length2; char 
length2_r_[PADR_(uint32_t)];
 };
 #else
 struct freebsd32_pread_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char buf_l_[PADL_(void *)]; void * buf; char buf_r_[PADR_(void *)];
        char nbyte_l_[PADL_(size_t)]; size_t nbyte; char 
nbyte_r_[PADR_(size_t)];
-       char offset1_l_[PADL_(u_int32_t)]; u_int32_t offset1; char 
offset1_r_[PADR_(u_int32_t)];
-       char offset2_l_[PADL_(u_int32_t)]; u_int32_t offset2; char 
offset2_r_[PADR_(u_int32_t)];
+       char offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char 
offset1_r_[PADR_(uint32_t)];
+       char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char 
offset2_r_[PADR_(uint32_t)];
 };
 struct freebsd32_pwrite_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char buf_l_[PADL_(const void *)]; const void * buf; char 
buf_r_[PADR_(const void *)];
        char nbyte_l_[PADL_(size_t)]; size_t nbyte; char 
nbyte_r_[PADR_(size_t)];
-       char offset1_l_[PADL_(u_int32_t)]; u_int32_t offset1; char 
offset1_r_[PADR_(u_int32_t)];
-       char offset2_l_[PADL_(u_int32_t)]; u_int32_t offset2; char 
offset2_r_[PADR_(u_int32_t)];
+       char offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char 
offset1_r_[PADR_(uint32_t)];
+       char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char 
offset2_r_[PADR_(uint32_t)];
 };
 struct freebsd32_mmap_args {
        char addr_l_[PADL_(caddr_t)]; caddr_t addr; char 
addr_r_[PADR_(caddr_t)];
@@ -465,69 +465,69 @@ struct freebsd32_mmap_args {
        char prot_l_[PADL_(int)]; int prot; char prot_r_[PADR_(int)];
        char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
-       char pos1_l_[PADL_(u_int32_t)]; u_int32_t pos1; char 
pos1_r_[PADR_(u_int32_t)];
-       char pos2_l_[PADL_(u_int32_t)]; u_int32_t pos2; char 
pos2_r_[PADR_(u_int32_t)];
+       char pos1_l_[PADL_(uint32_t)]; uint32_t pos1; char 
pos1_r_[PADR_(uint32_t)];
+       char pos2_l_[PADL_(uint32_t)]; uint32_t pos2; char 
pos2_r_[PADR_(uint32_t)];
 };
 struct freebsd32_lseek_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
-       char offset1_l_[PADL_(u_int32_t)]; u_int32_t offset1; char 
offset1_r_[PADR_(u_int32_t)];
-       char offset2_l_[PADL_(u_int32_t)]; u_int32_t offset2; char 
offset2_r_[PADR_(u_int32_t)];
+       char offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char 
offset1_r_[PADR_(uint32_t)];
+       char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char 
offset2_r_[PADR_(uint32_t)];
        char whence_l_[PADL_(int)]; int whence; char whence_r_[PADR_(int)];
 };
 struct freebsd32_truncate_args {
        char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
-       char length1_l_[PADL_(u_int32_t)]; u_int32_t length1; char 
length1_r_[PADR_(u_int32_t)];
-       char length2_l_[PADL_(u_int32_t)]; u_int32_t length2; char 
length2_r_[PADR_(u_int32_t)];
+       char length1_l_[PADL_(uint32_t)]; uint32_t length1; char 
length1_r_[PADR_(uint32_t)];
+       char length2_l_[PADL_(uint32_t)]; uint32_t length2; char 
length2_r_[PADR_(uint32_t)];
 };
 struct freebsd32_ftruncate_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
-       char length1_l_[PADL_(u_int32_t)]; u_int32_t length1; char 
length1_r_[PADR_(u_int32_t)];
-       char length2_l_[PADL_(u_int32_t)]; u_int32_t length2; char 
length2_r_[PADR_(u_int32_t)];
+       char length1_l_[PADL_(uint32_t)]; uint32_t length1; char 
length1_r_[PADR_(uint32_t)];
+       char length2_l_[PADL_(uint32_t)]; uint32_t length2; char 
length2_r_[PADR_(uint32_t)];
 };
 #endif
 #ifdef PAD64_REQUIRED
 struct freebsd32_cpuset_setid_args {
        char which_l_[PADL_(cpuwhich_t)]; cpuwhich_t which; char 
which_r_[PADR_(cpuwhich_t)];
        char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
-       char id1_l_[PADL_(u_int32_t)]; u_int32_t id1; char 
id1_r_[PADR_(u_int32_t)];
-       char id2_l_[PADL_(u_int32_t)]; u_int32_t id2; char 
id2_r_[PADR_(u_int32_t)];
+       char id1_l_[PADL_(uint32_t)]; uint32_t id1; char 
id1_r_[PADR_(uint32_t)];
+       char id2_l_[PADL_(uint32_t)]; uint32_t id2; char 
id2_r_[PADR_(uint32_t)];
        char setid_l_[PADL_(cpusetid_t)]; cpusetid_t setid; char 
setid_r_[PADR_(cpusetid_t)];
 };
 #else
 struct freebsd32_cpuset_setid_args {
        char which_l_[PADL_(cpuwhich_t)]; cpuwhich_t which; char 
which_r_[PADR_(cpuwhich_t)];
-       char id1_l_[PADL_(u_int32_t)]; u_int32_t id1; char 
id1_r_[PADR_(u_int32_t)];
-       char id2_l_[PADL_(u_int32_t)]; u_int32_t id2; char 
id2_r_[PADR_(u_int32_t)];
+       char id1_l_[PADL_(uint32_t)]; uint32_t id1; char 
id1_r_[PADR_(uint32_t)];
+       char id2_l_[PADL_(uint32_t)]; uint32_t id2; char 
id2_r_[PADR_(uint32_t)];
        char setid_l_[PADL_(cpusetid_t)]; cpusetid_t setid; char 
setid_r_[PADR_(cpusetid_t)];
 };
 #endif
 struct freebsd32_cpuset_getid_args {
        char level_l_[PADL_(cpulevel_t)]; cpulevel_t level; char 
level_r_[PADR_(cpulevel_t)];
        char which_l_[PADL_(cpuwhich_t)]; cpuwhich_t which; char 
which_r_[PADR_(cpuwhich_t)];
-       char id1_l_[PADL_(u_int32_t)]; u_int32_t id1; char 
id1_r_[PADR_(u_int32_t)];
-       char id2_l_[PADL_(u_int32_t)]; u_int32_t id2; char 
id2_r_[PADR_(u_int32_t)];
+       char id1_l_[PADL_(uint32_t)]; uint32_t id1; char 
id1_r_[PADR_(uint32_t)];
+       char id2_l_[PADL_(uint32_t)]; uint32_t id2; char 
id2_r_[PADR_(uint32_t)];
        char setid_l_[PADL_(cpusetid_t *)]; cpusetid_t * setid; char 
setid_r_[PADR_(cpusetid_t *)];
 };
 struct freebsd32_cpuset_getaffinity_args {
        char level_l_[PADL_(cpulevel_t)]; cpulevel_t level; char 
level_r_[PADR_(cpulevel_t)];
        char which_l_[PADL_(cpuwhich_t)]; cpuwhich_t which; char 
which_r_[PADR_(cpuwhich_t)];
-       char id1_l_[PADL_(u_int32_t)]; u_int32_t id1; char 
id1_r_[PADR_(u_int32_t)];
-       char id2_l_[PADL_(u_int32_t)]; u_int32_t id2; char 
id2_r_[PADR_(u_int32_t)];
+       char id1_l_[PADL_(uint32_t)]; uint32_t id1; char 
id1_r_[PADR_(uint32_t)];
+       char id2_l_[PADL_(uint32_t)]; uint32_t id2; char 
id2_r_[PADR_(uint32_t)];
        char cpusetsize_l_[PADL_(size_t)]; size_t cpusetsize; char 
cpusetsize_r_[PADR_(size_t)];
        char mask_l_[PADL_(cpuset_t *)]; cpuset_t * mask; char 
mask_r_[PADR_(cpuset_t *)];
 };
 struct freebsd32_cpuset_setaffinity_args {
        char level_l_[PADL_(cpulevel_t)]; cpulevel_t level; char 
level_r_[PADR_(cpulevel_t)];
        char which_l_[PADL_(cpuwhich_t)]; cpuwhich_t which; char 
which_r_[PADR_(cpuwhich_t)];
-       char id1_l_[PADL_(u_int32_t)]; u_int32_t id1; char 
id1_r_[PADR_(u_int32_t)];
-       char id2_l_[PADL_(u_int32_t)]; u_int32_t id2; char 
id2_r_[PADR_(u_int32_t)];
+       char id1_l_[PADL_(uint32_t)]; uint32_t id1; char 
id1_r_[PADR_(uint32_t)];
+       char id2_l_[PADL_(uint32_t)]; uint32_t id2; char 
id2_r_[PADR_(uint32_t)];
        char cpusetsize_l_[PADL_(size_t)]; size_t cpusetsize; char 
cpusetsize_r_[PADR_(size_t)];
        char mask_l_[PADL_(const cpuset_t *)]; const cpuset_t * mask; char 
mask_r_[PADR_(const cpuset_t *)];
 };
 struct freebsd32_fexecve_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
-       char argv_l_[PADL_(u_int32_t *)]; u_int32_t * argv; char 
argv_r_[PADR_(u_int32_t *)];
-       char envv_l_[PADL_(u_int32_t *)]; u_int32_t * envv; char 
envv_r_[PADR_(u_int32_t *)];
+       char argv_l_[PADL_(uint32_t *)]; uint32_t * argv; char 
argv_r_[PADR_(uint32_t *)];
+       char envv_l_[PADL_(uint32_t *)]; uint32_t * envv; char 
envv_r_[PADR_(uint32_t *)];
 };
 struct freebsd32_fstatat_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
@@ -812,8 +812,8 @@ struct freebsd4_freebsd32_fhstatfs_args 
 struct freebsd4_freebsd32_sendfile_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char s_l_[PADL_(int)]; int s; char s_r_[PADR_(int)];
-       char offset1_l_[PADL_(u_int32_t)]; u_int32_t offset1; char 
offset1_r_[PADR_(u_int32_t)];
-       char offset2_l_[PADL_(u_int32_t)]; u_int32_t offset2; char 
offset2_r_[PADR_(u_int32_t)];
+       char offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char 
offset1_r_[PADR_(uint32_t)];
+       char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char 
offset2_r_[PADR_(uint32_t)];
        char nbytes_l_[PADL_(size_t)]; size_t nbytes; char 
nbytes_r_[PADR_(size_t)];
        char hdtr_l_[PADL_(struct sf_hdtr32 *)]; struct sf_hdtr32 * hdtr; char 
hdtr_r_[PADR_(struct sf_hdtr32 *)];
        char sbytes_l_[PADL_(off_t *)]; off_t * sbytes; char 
sbytes_r_[PADR_(off_t *)];
@@ -854,16 +854,16 @@ struct freebsd6_freebsd32_pread_args {
        char buf_l_[PADL_(void *)]; void * buf; char buf_r_[PADR_(void *)];
        char nbyte_l_[PADL_(size_t)]; size_t nbyte; char 
nbyte_r_[PADR_(size_t)];
        char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
-       char offset1_l_[PADL_(u_int32_t)]; u_int32_t offset1; char 
offset1_r_[PADR_(u_int32_t)];
-       char offset2_l_[PADL_(u_int32_t)]; u_int32_t offset2; char 
offset2_r_[PADR_(u_int32_t)];
+       char offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char 
offset1_r_[PADR_(uint32_t)];
+       char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char 
offset2_r_[PADR_(uint32_t)];
 };
 struct freebsd6_freebsd32_pwrite_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char buf_l_[PADL_(const void *)]; const void * buf; char 
buf_r_[PADR_(const void *)];
        char nbyte_l_[PADL_(size_t)]; size_t nbyte; char 
nbyte_r_[PADR_(size_t)];
        char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
-       char offset1_l_[PADL_(u_int32_t)]; u_int32_t offset1; char 
offset1_r_[PADR_(u_int32_t)];
-       char offset2_l_[PADL_(u_int32_t)]; u_int32_t offset2; char 
offset2_r_[PADR_(u_int32_t)];
+       char offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char 
offset1_r_[PADR_(uint32_t)];
+       char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char 
offset2_r_[PADR_(uint32_t)];
 };
 struct freebsd6_freebsd32_mmap_args {
        char addr_l_[PADL_(caddr_t)]; caddr_t addr; char 
addr_r_[PADR_(caddr_t)];
@@ -872,27 +872,27 @@ struct freebsd6_freebsd32_mmap_args {
        char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
-       char pos1_l_[PADL_(u_int32_t)]; u_int32_t pos1; char 
pos1_r_[PADR_(u_int32_t)];
-       char pos2_l_[PADL_(u_int32_t)]; u_int32_t pos2; char 
pos2_r_[PADR_(u_int32_t)];
+       char pos1_l_[PADL_(uint32_t)]; uint32_t pos1; char 
pos1_r_[PADR_(uint32_t)];
+       char pos2_l_[PADL_(uint32_t)]; uint32_t pos2; char 
pos2_r_[PADR_(uint32_t)];
 };
 struct freebsd6_freebsd32_lseek_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
-       char offset1_l_[PADL_(u_int32_t)]; u_int32_t offset1; char 
offset1_r_[PADR_(u_int32_t)];
-       char offset2_l_[PADL_(u_int32_t)]; u_int32_t offset2; char 
offset2_r_[PADR_(u_int32_t)];
+       char offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char 
offset1_r_[PADR_(uint32_t)];
+       char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char 
offset2_r_[PADR_(uint32_t)];
        char whence_l_[PADL_(int)]; int whence; char whence_r_[PADR_(int)];
 };
 struct freebsd6_freebsd32_truncate_args {
        char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
        char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
-       char length1_l_[PADL_(u_int32_t)]; u_int32_t length1; char 
length1_r_[PADR_(u_int32_t)];
-       char length2_l_[PADL_(u_int32_t)]; u_int32_t length2; char 
length2_r_[PADR_(u_int32_t)];
+       char length1_l_[PADL_(uint32_t)]; uint32_t length1; char 
length1_r_[PADR_(uint32_t)];
+       char length2_l_[PADL_(uint32_t)]; uint32_t length2; char 
length2_r_[PADR_(uint32_t)];
 };
 struct freebsd6_freebsd32_ftruncate_args {
        char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
        char pad_l_[PADL_(int)]; int pad; char pad_r_[PADR_(int)];
-       char length1_l_[PADL_(u_int32_t)]; u_int32_t length1; char 
length1_r_[PADR_(u_int32_t)];
-       char length2_l_[PADL_(u_int32_t)]; u_int32_t length2; char 
length2_r_[PADR_(u_int32_t)];
+       char length1_l_[PADL_(uint32_t)]; uint32_t length1; char 
length1_r_[PADR_(uint32_t)];
+       char length2_l_[PADL_(uint32_t)]; uint32_t length2; char 
length2_r_[PADR_(uint32_t)];
 };
 #ifdef PAD64_REQUIRED
 #else

Modified: head/sys/compat/freebsd32/freebsd32_syscall.h
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_syscall.h       Fri May 25 21:50:48 
2012        (r236026)
+++ head/sys/compat/freebsd32/freebsd32_syscall.h       Fri May 25 21:52:57 
2012        (r236027)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 227776 
2011-11-21 01:26:10Z lstewart 
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 236026 
2012-05-25 21:50:48Z ed 
  */
 
 #define        FREEBSD32_SYS_syscall   0

Modified: head/sys/compat/freebsd32/freebsd32_syscalls.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_syscalls.c      Fri May 25 21:50:48 
2012        (r236026)
+++ head/sys/compat/freebsd32/freebsd32_syscalls.c      Fri May 25 21:52:57 
2012        (r236027)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 227776 
2011-11-21 01:26:10Z lstewart 
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 236026 
2012-05-25 21:50:48Z ed 
  */
 
 const char *freebsd32_syscallnames[] = {

Modified: head/sys/compat/freebsd32/freebsd32_sysent.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_sysent.c        Fri May 25 21:50:48 
2012        (r236026)
+++ head/sys/compat/freebsd32/freebsd32_sysent.c        Fri May 25 21:52:57 
2012        (r236027)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 227776 
2011-11-21 01:26:10Z lstewart 
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 236026 
2012-05-25 21:50:48Z ed 
  */
 
 #include "opt_compat.h"

Modified: head/sys/compat/freebsd32/freebsd32_systrace_args.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_systrace_args.c Fri May 25 21:50:48 
2012        (r236026)
+++ head/sys/compat/freebsd32/freebsd32_systrace_args.c Fri May 25 21:52:57 
2012        (r236027)
@@ -209,11 +209,11 @@ systrace_args(int sysnum, void *params, 
        case 29: {
                struct freebsd32_recvfrom_args *p = params;
                iarg[0] = p->s; /* int */
-               uarg[1] = p->buf; /* u_int32_t */
-               uarg[2] = p->len; /* u_int32_t */
+               uarg[1] = p->buf; /* uint32_t */
+               uarg[2] = p->len; /* uint32_t */
                iarg[3] = p->flags; /* int */
-               uarg[4] = p->from; /* u_int32_t */
-               uarg[5] = p->fromlenaddr; /* u_int32_t */
+               uarg[4] = p->from; /* uint32_t */
+               uarg[5] = p->fromlenaddr; /* uint32_t */
                *n_args = 6;
                break;
        }
@@ -402,8 +402,8 @@ systrace_args(int sysnum, void *params, 
        case 59: {
                struct freebsd32_execve_args *p = params;
                uarg[0] = (intptr_t) p->fname; /* char * */
-               uarg[1] = (intptr_t) p->argv; /* u_int32_t * */
-               uarg[2] = (intptr_t) p->envv; /* u_int32_t * */
+               uarg[1] = (intptr_t) p->argv; /* uint32_t * */
+               uarg[2] = (intptr_t) p->envv; /* uint32_t * */
                *n_args = 3;
                break;
        }
@@ -996,9 +996,9 @@ systrace_args(int sysnum, void *params, 
                uarg[0] = (intptr_t) p->name; /* int * */
                uarg[1] = p->namelen; /* u_int */
                uarg[2] = (intptr_t) p->old; /* void * */
-               uarg[3] = (intptr_t) p->oldlenp; /* u_int32_t * */
+               uarg[3] = (intptr_t) p->oldlenp; /* uint32_t * */
                uarg[4] = (intptr_t) p->new; /* void * */
-               uarg[5] = p->newlen; /* u_int32_t */
+               uarg[5] = p->newlen; /* uint32_t */
                *n_args = 6;
                break;
        }
@@ -1360,8 +1360,8 @@ systrace_args(int sysnum, void *params, 
                iarg[0] = p->fd; /* int */
                uarg[1] = (intptr_t) p->iovp; /* struct iovec32 * */
                uarg[2] = p->iovcnt; /* u_int */
-               uarg[3] = p->offset1; /* u_int32_t */
-               uarg[4] = p->offset2; /* u_int32_t */
+               uarg[3] = p->offset1; /* uint32_t */
+               uarg[4] = p->offset2; /* uint32_t */
                *n_args = 5;
                break;
        }
@@ -1371,8 +1371,8 @@ systrace_args(int sysnum, void *params, 
                iarg[0] = p->fd; /* int */
                uarg[1] = (intptr_t) p->iovp; /* struct iovec32 * */
                uarg[2] = p->iovcnt; /* u_int */
-               uarg[3] = p->offset1; /* u_int32_t */
-               uarg[4] = p->offset2; /* u_int32_t */
+               uarg[3] = p->offset1; /* uint32_t */
+               uarg[4] = p->offset2; /* uint32_t */
                *n_args = 5;
                break;
        }
@@ -1933,8 +1933,8 @@ systrace_args(int sysnum, void *params, 
                struct freebsd32_sendfile_args *p = params;
                iarg[0] = p->fd; /* int */
                iarg[1] = p->s; /* int */
-               uarg[2] = p->offset1; /* u_int32_t */
-               uarg[3] = p->offset2; /* u_int32_t */
+               uarg[2] = p->offset1; /* uint32_t */
+               uarg[3] = p->offset2; /* uint32_t */
                uarg[4] = p->nbytes; /* size_t */
                uarg[5] = (intptr_t) p->hdtr; /* struct sf_hdtr32 * */
                uarg[6] = (intptr_t) p->sbytes; /* off_t * */
@@ -2500,8 +2500,8 @@ systrace_args(int sysnum, void *params, 
                uarg[1] = (intptr_t) p->buf; /* void * */
                uarg[2] = p->nbyte; /* size_t */
                iarg[3] = p->pad; /* int */
-               uarg[4] = p->offset1; /* u_int32_t */
-               uarg[5] = p->offset2; /* u_int32_t */
+               uarg[4] = p->offset1; /* uint32_t */
+               uarg[5] = p->offset2; /* uint32_t */
                *n_args = 6;
                break;
        }
@@ -2512,8 +2512,8 @@ systrace_args(int sysnum, void *params, 
                uarg[1] = (intptr_t) p->buf; /* const void * */
                uarg[2] = p->nbyte; /* size_t */
                iarg[3] = p->pad; /* int */
-               uarg[4] = p->offset1; /* u_int32_t */
-               uarg[5] = p->offset2; /* u_int32_t */
+               uarg[4] = p->offset1; /* uint32_t */
+               uarg[5] = p->offset2; /* uint32_t */
                *n_args = 6;
                break;
        }
@@ -2526,8 +2526,8 @@ systrace_args(int sysnum, void *params, 
                iarg[3] = p->flags; /* int */
                iarg[4] = p->fd; /* int */
                iarg[5] = p->pad; /* int */
-               uarg[6] = p->pos1; /* u_int32_t */
-               uarg[7] = p->pos2; /* u_int32_t */
+               uarg[6] = p->pos1; /* uint32_t */
+               uarg[7] = p->pos2; /* uint32_t */
                *n_args = 8;
                break;
        }
@@ -2536,8 +2536,8 @@ systrace_args(int sysnum, void *params, 
                struct freebsd32_lseek_args *p = params;
                iarg[0] = p->fd; /* int */
                iarg[1] = p->pad; /* int */
-               uarg[2] = p->offset1; /* u_int32_t */
-               uarg[3] = p->offset2; /* u_int32_t */
+               uarg[2] = p->offset1; /* uint32_t */
+               uarg[3] = p->offset2; /* uint32_t */
                iarg[4] = p->whence; /* int */
                *n_args = 5;
                break;
@@ -2547,8 +2547,8 @@ systrace_args(int sysnum, void *params, 
                struct freebsd32_truncate_args *p = params;
                uarg[0] = (intptr_t) p->path; /* char * */
                iarg[1] = p->pad; /* int */
-               uarg[2] = p->length1; /* u_int32_t */
-               uarg[3] = p->length2; /* u_int32_t */
+               uarg[2] = p->length1; /* uint32_t */
+               uarg[3] = p->length2; /* uint32_t */
                *n_args = 4;
                break;
        }
@@ -2557,8 +2557,8 @@ systrace_args(int sysnum, void *params, 
                struct freebsd32_ftruncate_args *p = params;
                iarg[0] = p->fd; /* int */
                iarg[1] = p->pad; /* int */
-               uarg[2] = p->length1; /* u_int32_t */
-               uarg[3] = p->length2; /* u_int32_t */
+               uarg[2] = p->length1; /* uint32_t */
+               uarg[3] = p->length2; /* uint32_t */
                *n_args = 4;
                break;
        }
@@ -2569,8 +2569,8 @@ systrace_args(int sysnum, void *params, 
                iarg[0] = p->fd; /* int */
                uarg[1] = (intptr_t) p->buf; /* void * */
                uarg[2] = p->nbyte; /* size_t */
-               uarg[3] = p->offset1; /* u_int32_t */
-               uarg[4] = p->offset2; /* u_int32_t */
+               uarg[3] = p->offset1; /* uint32_t */
+               uarg[4] = p->offset2; /* uint32_t */
                *n_args = 5;
                break;
        }
@@ -2580,8 +2580,8 @@ systrace_args(int sysnum, void *params, 
                iarg[0] = p->fd; /* int */
                uarg[1] = (intptr_t) p->buf; /* const void * */
                uarg[2] = p->nbyte; /* size_t */
-               uarg[3] = p->offset1; /* u_int32_t */
-               uarg[4] = p->offset2; /* u_int32_t */
+               uarg[3] = p->offset1; /* uint32_t */
+               uarg[4] = p->offset2; /* uint32_t */
                *n_args = 5;
                break;
        }
@@ -2593,8 +2593,8 @@ systrace_args(int sysnum, void *params, 
                iarg[2] = p->prot; /* int */
                iarg[3] = p->flags; /* int */
                iarg[4] = p->fd; /* int */
-               uarg[5] = p->pos1; /* u_int32_t */
-               uarg[6] = p->pos2; /* u_int32_t */
+               uarg[5] = p->pos1; /* uint32_t */
+               uarg[6] = p->pos2; /* uint32_t */
                *n_args = 7;
                break;
        }
@@ -2602,8 +2602,8 @@ systrace_args(int sysnum, void *params, 
        case 478: {
                struct freebsd32_lseek_args *p = params;
                iarg[0] = p->fd; /* int */
-               uarg[1] = p->offset1; /* u_int32_t */
-               uarg[2] = p->offset2; /* u_int32_t */
+               uarg[1] = p->offset1; /* uint32_t */
+               uarg[2] = p->offset2; /* uint32_t */
                iarg[3] = p->whence; /* int */
                *n_args = 4;
                break;
@@ -2612,8 +2612,8 @@ systrace_args(int sysnum, void *params, 
        case 479: {
                struct freebsd32_truncate_args *p = params;
                uarg[0] = (intptr_t) p->path; /* char * */
-               uarg[1] = p->length1; /* u_int32_t */
-               uarg[2] = p->length2; /* u_int32_t */
+               uarg[1] = p->length1; /* uint32_t */
+               uarg[2] = p->length2; /* uint32_t */
                *n_args = 3;
                break;
        }
@@ -2621,8 +2621,8 @@ systrace_args(int sysnum, void *params, 
        case 480: {
                struct freebsd32_ftruncate_args *p = params;
                iarg[0] = p->fd; /* int */
-               uarg[1] = p->length1; /* u_int32_t */
-               uarg[2] = p->length2; /* u_int32_t */
+               uarg[1] = p->length1; /* uint32_t */
+               uarg[2] = p->length2; /* uint32_t */
                *n_args = 3;
                break;
        }
@@ -2665,8 +2665,8 @@ systrace_args(int sysnum, void *params, 
                struct freebsd32_cpuset_setid_args *p = params;
                iarg[0] = p->which; /* cpuwhich_t */
                iarg[1] = p->pad; /* int */
-               uarg[2] = p->id1; /* u_int32_t */
-               uarg[3] = p->id2; /* u_int32_t */
+               uarg[2] = p->id1; /* uint32_t */
+               uarg[3] = p->id2; /* uint32_t */
                iarg[4] = p->setid; /* cpusetid_t */
                *n_args = 5;
                break;
@@ -2676,8 +2676,8 @@ systrace_args(int sysnum, void *params, 
        case 485: {
                struct freebsd32_cpuset_setid_args *p = params;
                iarg[0] = p->which; /* cpuwhich_t */
-               uarg[1] = p->id1; /* u_int32_t */
-               uarg[2] = p->id2; /* u_int32_t */
+               uarg[1] = p->id1; /* uint32_t */
+               uarg[2] = p->id2; /* uint32_t */
                iarg[3] = p->setid; /* cpusetid_t */
                *n_args = 4;
                break;
@@ -2688,8 +2688,8 @@ systrace_args(int sysnum, void *params, 
                struct freebsd32_cpuset_getid_args *p = params;
                iarg[0] = p->level; /* cpulevel_t */
                iarg[1] = p->which; /* cpuwhich_t */
-               uarg[2] = p->id1; /* u_int32_t */
-               uarg[3] = p->id2; /* u_int32_t */
+               uarg[2] = p->id1; /* uint32_t */
+               uarg[3] = p->id2; /* uint32_t */
                uarg[4] = (intptr_t) p->setid; /* cpusetid_t * */
                *n_args = 5;
                break;
@@ -2699,8 +2699,8 @@ systrace_args(int sysnum, void *params, 
                struct freebsd32_cpuset_getaffinity_args *p = params;
                iarg[0] = p->level; /* cpulevel_t */
                iarg[1] = p->which; /* cpuwhich_t */
-               uarg[2] = p->id1; /* u_int32_t */
-               uarg[3] = p->id2; /* u_int32_t */
+               uarg[2] = p->id1; /* uint32_t */
+               uarg[3] = p->id2; /* uint32_t */
                uarg[4] = p->cpusetsize; /* size_t */
                uarg[5] = (intptr_t) p->mask; /* cpuset_t * */
                *n_args = 6;
@@ -2711,8 +2711,8 @@ systrace_args(int sysnum, void *params, 
                struct freebsd32_cpuset_setaffinity_args *p = params;
                iarg[0] = p->level; /* cpulevel_t */
                iarg[1] = p->which; /* cpuwhich_t */
-               uarg[2] = p->id1; /* u_int32_t */
-               uarg[3] = p->id2; /* u_int32_t */
+               uarg[2] = p->id1; /* uint32_t */
+               uarg[3] = p->id2; /* uint32_t */
                uarg[4] = p->cpusetsize; /* size_t */
                uarg[5] = (intptr_t) p->mask; /* const cpuset_t * */
                *n_args = 6;
@@ -2753,8 +2753,8 @@ systrace_args(int sysnum, void *params, 
        case 492: {
                struct freebsd32_fexecve_args *p = params;
                iarg[0] = p->fd; /* int */
-               uarg[1] = (intptr_t) p->argv; /* u_int32_t * */
-               uarg[2] = (intptr_t) p->envv; /* u_int32_t * */
+               uarg[1] = (intptr_t) p->argv; /* uint32_t * */
+               uarg[2] = (intptr_t) p->envv; /* uint32_t * */
                *n_args = 3;
                break;
        }
@@ -2943,7 +2943,7 @@ systrace_args(int sysnum, void *params, 
        case 514: {
                struct cap_new_args *p = params;
                iarg[0] = p->fd; /* int */
-               uarg[1] = p->rights; /* u_int64_t */
+               uarg[1] = p->rights; /* uint64_t */
                *n_args = 2;
                break;
        }
@@ -2951,7 +2951,7 @@ systrace_args(int sysnum, void *params, 
        case 515: {
                struct cap_getrights_args *p = params;
                iarg[0] = p->fd; /* int */
-               uarg[1] = (intptr_t) p->rightsp; /* u_int64_t * */
+               uarg[1] = (intptr_t) p->rightsp; /* uint64_t * */
                *n_args = 2;
                break;
        }
@@ -3380,19 +3380,19 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "int";
                        break;
                case 1:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 2:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 3:
                        p = "int";
                        break;
                case 4:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 5:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -3679,10 +3679,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "char *";
                        break;
                case 1:
-                       p = "u_int32_t *";
+                       p = "uint32_t *";
                        break;
                case 2:
-                       p = "u_int32_t *";
+                       p = "uint32_t *";
                        break;
                default:
                        break;
@@ -4664,13 +4664,13 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "void *";
                        break;
                case 3:
-                       p = "u_int32_t *";
+                       p = "uint32_t *";
                        break;
                case 4:
                        p = "void *";
                        break;
                case 5:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -5217,10 +5217,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "u_int";
                        break;
                case 3:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 4:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -5239,10 +5239,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "u_int";
                        break;
                case 3:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 4:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -6162,10 +6162,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "int";
                        break;
                case 2:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 3:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 4:
                        p = "size_t";
@@ -7135,10 +7135,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "int";
                        break;
                case 4:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 5:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -7160,10 +7160,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "int";
                        break;
                case 4:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 5:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -7191,10 +7191,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "int";
                        break;
                case 6:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 7:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -7210,10 +7210,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "int";
                        break;
                case 2:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 3:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 4:
                        p = "int";
@@ -7232,10 +7232,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "int";
                        break;
                case 2:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 3:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -7251,10 +7251,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "int";
                        break;
                case 2:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 3:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -7274,10 +7274,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "size_t";
                        break;
                case 3:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 4:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -7296,10 +7296,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "size_t";
                        break;
                case 3:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 4:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -7324,10 +7324,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "int";
                        break;
                case 5:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 6:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -7340,10 +7340,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "int";
                        break;
                case 1:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 2:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 3:
                        p = "int";
@@ -7359,10 +7359,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "char *";
                        break;
                case 1:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 2:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -7375,10 +7375,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "int";
                        break;
                case 1:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 2:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                default:
                        break;
@@ -7448,10 +7448,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "int";
                        break;
                case 2:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 3:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 4:
                        p = "cpusetid_t";
@@ -7468,10 +7468,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "cpuwhich_t";
                        break;
                case 1:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 2:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;
                case 3:
                        p = "cpusetid_t";
@@ -7491,10 +7491,10 @@ systrace_entry_setargdesc(int sysnum, in
                        p = "cpuwhich_t";
                        break;
                case 2:
-                       p = "u_int32_t";
+                       p = "uint32_t";
                        break;

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to