Author: kib
Date: Thu Jun 16 22:06:35 2011
New Revision: 223167
URL: http://svn.freebsd.org/changeset/base/223167

Log:
  Regen.

Modified:
  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

Modified: head/sys/compat/freebsd32/freebsd32_proto.h
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_proto.h Thu Jun 16 22:05:56 2011        
(r223166)
+++ head/sys/compat/freebsd32/freebsd32_proto.h Thu Jun 16 22:06:35 2011        
(r223167)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 223166 
2011-06-16 22:05:56Z kib 
  */
 
 #ifndef _FREEBSD32_SYSPROTO_H_
@@ -690,6 +690,11 @@ int        freebsd32_posix_fallocate(struct thr
 #if !defined(PAD64_REQUIRED) && defined(__powerpc__)
 #define PAD64_REQUIRED
 #endif
+struct ofreebsd32_lseek_args {
+       char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
+       char offset_l_[PADL_(int)]; int offset; char offset_r_[PADR_(int)];
+       char whence_l_[PADL_(int)]; int whence; char whence_r_[PADR_(int)];
+};
 struct ofreebsd32_stat_args {
        char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
        char ub_l_[PADL_(struct ostat32 *)]; struct ostat32 * ub; char 
ub_r_[PADR_(struct ostat32 *)];
@@ -747,6 +752,7 @@ struct ofreebsd32_getdirentries_args {
 #ifdef PAD64_REQUIRED
 #else
 #endif
+int    ofreebsd32_lseek(struct thread *, struct ofreebsd32_lseek_args *);
 int    ofreebsd32_stat(struct thread *, struct ofreebsd32_stat_args *);
 int    ofreebsd32_lstat(struct thread *, struct ofreebsd32_lstat_args *);
 int    ofreebsd32_sigaction(struct thread *, struct ofreebsd32_sigaction_args 
*);
@@ -923,6 +929,7 @@ int freebsd7_freebsd32_shmctl(struct thr
 
 #define        FREEBSD32_SYS_AUE_freebsd32_wait4       AUE_WAIT4
 #define        FREEBSD32_SYS_AUE_freebsd4_freebsd32_getfsstat  AUE_GETFSSTAT
+#define        FREEBSD32_SYS_AUE_ofreebsd32_lseek      AUE_LSEEK
 #define        FREEBSD32_SYS_AUE_freebsd32_recvmsg     AUE_RECVMSG
 #define        FREEBSD32_SYS_AUE_freebsd32_sendmsg     AUE_SENDMSG
 #define        FREEBSD32_SYS_AUE_freebsd32_recvfrom    AUE_RECVFROM

Modified: head/sys/compat/freebsd32/freebsd32_syscall.h
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_syscall.h       Thu Jun 16 22:05:56 
2011        (r223166)
+++ head/sys/compat/freebsd32/freebsd32_syscall.h       Thu Jun 16 22:06:35 
2011        (r223167)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 223166 
2011-06-16 22:05:56Z kib 
  */
 
 #define        FREEBSD32_SYS_syscall   0
@@ -25,7 +25,7 @@
 #define        FREEBSD32_SYS_chown     16
 #define        FREEBSD32_SYS_break     17
 #define        FREEBSD32_SYS_freebsd4_freebsd32_getfsstat      18
-                               /* 19 is obsolete olseek */
+                               /* 19 is old freebsd32_lseek */
 #define        FREEBSD32_SYS_getpid    20
 #define        FREEBSD32_SYS_mount     21
 #define        FREEBSD32_SYS_unmount   22

Modified: head/sys/compat/freebsd32/freebsd32_syscalls.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_syscalls.c      Thu Jun 16 22:05:56 
2011        (r223166)
+++ head/sys/compat/freebsd32/freebsd32_syscalls.c      Thu Jun 16 22:06:35 
2011        (r223167)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 223166 
2011-06-16 22:05:56Z kib 
  */
 
 const char *freebsd32_syscallnames[] = {
@@ -29,7 +29,7 @@ const char *freebsd32_syscallnames[] = {
        "chown",                        /* 16 = chown */
        "break",                        /* 17 = break */
        "compat4.freebsd32_getfsstat",          /* 18 = freebsd4 
freebsd32_getfsstat */
-       "obs_olseek",                   /* 19 = obsolete olseek */
+       "compat.freebsd32_lseek",               /* 19 = old freebsd32_lseek */
        "getpid",                       /* 20 = getpid */
        "mount",                        /* 21 = mount */
        "unmount",                      /* 22 = unmount */

Modified: head/sys/compat/freebsd32/freebsd32_sysent.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_sysent.c        Thu Jun 16 22:05:56 
2011        (r223166)
+++ head/sys/compat/freebsd32/freebsd32_sysent.c        Thu Jun 16 22:06:35 
2011        (r223167)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 223166 
2011-06-16 22:05:56Z kib 
  */
 
 #include "opt_compat.h"
@@ -66,7 +66,7 @@ struct sysent freebsd32_sysent[] = {
        { AS(chown_args), (sy_call_t *)chown, AUE_CHOWN, NULL, 0, 0, 0, 
SY_THR_STATIC },        /* 16 = chown */
        { AS(obreak_args), (sy_call_t *)obreak, AUE_NULL, NULL, 0, 0, 0, 
SY_THR_STATIC },       /* 17 = break */
        { compat4(AS(freebsd4_freebsd32_getfsstat_args),freebsd32_getfsstat), 
AUE_GETFSSTAT, NULL, 0, 0, 0, SY_THR_STATIC },    /* 18 = freebsd4 
freebsd32_getfsstat */
-       { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0, SY_THR_ABSENT },      
                /* 19 = obsolete olseek */
+       { compat(AS(ofreebsd32_lseek_args),freebsd32_lseek), AUE_LSEEK, NULL, 
0, 0, 0, SY_THR_STATIC }, /* 19 = old freebsd32_lseek */
        { 0, (sy_call_t *)getpid, AUE_GETPID, NULL, 0, 0, 0, SY_THR_STATIC },   
        /* 20 = getpid */
        { AS(mount_args), (sy_call_t *)mount, AUE_MOUNT, NULL, 0, 0, 0, 
SY_THR_STATIC },        /* 21 = mount */
        { AS(unmount_args), (sy_call_t *)unmount, AUE_UMOUNT, NULL, 0, 0, 0, 
SY_THR_STATIC },   /* 22 = unmount */
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to