[Midnightbsd-cvs] src [7243] trunk/sys: regenerate syscall

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Wed Aug 12 18:49:35 EDT 2015


Revision: 7243
          http://svnweb.midnightbsd.org/src/?rev=7243
Author:   laffer1
Date:     2015-08-12 18:49:34 -0400 (Wed, 12 Aug 2015)
Log Message:
-----------
regenerate syscall

Modified Paths:
--------------
    trunk/sys/amd64/linux32/linux32_proto.h
    trunk/sys/amd64/linux32/linux32_syscall.h
    trunk/sys/amd64/linux32/linux32_syscalls.c
    trunk/sys/amd64/linux32/linux32_sysent.c
    trunk/sys/amd64/linux32/linux32_systrace_args.c
    trunk/sys/compat/freebsd32/freebsd32_proto.h
    trunk/sys/compat/freebsd32/freebsd32_syscall.h
    trunk/sys/compat/freebsd32/freebsd32_syscalls.c
    trunk/sys/compat/freebsd32/freebsd32_sysent.c
    trunk/sys/compat/freebsd32/freebsd32_systrace_args.c
    trunk/sys/i386/linux/linux_proto.h
    trunk/sys/i386/linux/linux_syscall.h
    trunk/sys/i386/linux/linux_syscalls.c
    trunk/sys/i386/linux/linux_sysent.c
    trunk/sys/i386/linux/linux_systrace_args.c
    trunk/sys/kern/init_sysent.c
    trunk/sys/kern/syscalls.c
    trunk/sys/kern/systrace_args.c
    trunk/sys/sys/syscall.h
    trunk/sys/sys/syscall.mk
    trunk/sys/sys/sysproto.h

Property Changed:
----------------
    trunk/sys/compat/freebsd32/freebsd32_proto.h
    trunk/sys/compat/freebsd32/freebsd32_syscall.h
    trunk/sys/compat/freebsd32/freebsd32_syscalls.c
    trunk/sys/compat/freebsd32/freebsd32_sysent.c
    trunk/sys/compat/freebsd32/freebsd32_systrace_args.c

Modified: trunk/sys/amd64/linux32/linux32_proto.h
===================================================================
--- trunk/sys/amd64/linux32/linux32_proto.h	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/amd64/linux32/linux32_proto.h	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,8 +2,8 @@
  * System call prototypes.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD$
- * created from FreeBSD: stable/9/sys/amd64/linux32/syscalls.master 234316 2012-04-15 16:52:48Z netchild 
+ * $FreeBSD$
+ * created from MidnightBSD
  */
 
 #ifndef _LINUX_SYSPROTO_H_
@@ -131,7 +131,7 @@
 };
 struct linux_access_args {
 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
-	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
+	char amode_l_[PADL_(l_int)]; l_int amode; char amode_r_[PADR_(l_int)];
 };
 struct linux_nice_args {
 	char inc_l_[PADL_(l_int)]; l_int inc; char inc_r_[PADR_(l_int)];
@@ -969,7 +969,7 @@
 struct linux_faccessat_args {
 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
-	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
+	char amode_l_[PADL_(l_int)]; l_int amode; char amode_r_[PADR_(l_int)];
 };
 struct linux_pselect6_args {
 	register_t dummy;

Modified: trunk/sys/amd64/linux32/linux32_syscall.h
===================================================================
--- trunk/sys/amd64/linux32/linux32_syscall.h	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/amd64/linux32/linux32_syscall.h	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,8 +2,8 @@
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD$
- * created from FreeBSD: stable/9/sys/amd64/linux32/syscalls.master 234316 2012-04-15 16:52:48Z netchild 
+ * $FreeBSD$
+ * created from MidnightBSD
  */
 
 #define	LINUX_SYS_exit	1

Modified: trunk/sys/amd64/linux32/linux32_syscalls.c
===================================================================
--- trunk/sys/amd64/linux32/linux32_syscalls.c	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/amd64/linux32/linux32_syscalls.c	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,8 +2,8 @@
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD$
- * created from FreeBSD: stable/9/sys/amd64/linux32/syscalls.master 234316 2012-04-15 16:52:48Z netchild 
+ * $FreeBSD$
+ * created from MidnightBSD
  */
 
 const char *linux_syscallnames[] = {

Modified: trunk/sys/amd64/linux32/linux32_sysent.c
===================================================================
--- trunk/sys/amd64/linux32/linux32_sysent.c	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/amd64/linux32/linux32_sysent.c	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,8 +2,8 @@
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD$
- * created from FreeBSD: stable/9/sys/amd64/linux32/syscalls.master 234316 2012-04-15 16:52:48Z netchild 
+ * $FreeBSD$
+ * created from MidnightBSD
  */
 
 #include "opt_compat.h"

Modified: trunk/sys/amd64/linux32/linux32_systrace_args.c
===================================================================
--- trunk/sys/amd64/linux32/linux32_systrace_args.c	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/amd64/linux32/linux32_systrace_args.c	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,7 +2,7 @@
  * System call argument to DTrace register array converstion.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD$
+ * $FreeBSD$
  * This file is part of the DTrace syscall provider.
  */
 
@@ -230,7 +230,7 @@
 	case 33: {
 		struct linux_access_args *p = params;
 		uarg[0] = (intptr_t) p->path; /* char * */
-		iarg[1] = p->flags; /* l_int */
+		iarg[1] = p->amode; /* l_int */
 		*n_args = 2;
 		break;
 	}
@@ -2043,7 +2043,7 @@
 		struct linux_faccessat_args *p = params;
 		iarg[0] = p->dfd; /* l_int */
 		uarg[1] = (intptr_t) p->filename; /* const char * */
-		iarg[2] = p->mode; /* l_int */
+		iarg[2] = p->amode; /* l_int */
 		*n_args = 3;
 		break;
 	}

Modified: trunk/sys/compat/freebsd32/freebsd32_proto.h
===================================================================
--- trunk/sys/compat/freebsd32/freebsd32_proto.h	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/compat/freebsd32/freebsd32_proto.h	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,8 +2,8 @@
  * System call prototypes.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD: src/sys/compat/freebsd32/freebsd32_proto.h,v 1.7 2012/01/04 02:14:06 laffer1 Exp $
- * created from; MidnightBSD: src/sys/compat/freebsd32/syscalls.master,v 1.5 2011/12/29 02:33:28 laffer1 Exp 
+ * $FreeBSD$
+ * created from; MidnightBSD: src/sys/compat/freebsd32/syscalls.master,v 1.6 2012/01/04 02:14:06 laffer1 Exp 
  */
 
 #ifndef _FREEBSD32_SYSPROTO_H_


Property changes on: trunk/sys/compat/freebsd32/freebsd32_proto.h
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.8
\ No newline at end of property
Modified: trunk/sys/compat/freebsd32/freebsd32_syscall.h
===================================================================
--- trunk/sys/compat/freebsd32/freebsd32_syscall.h	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/compat/freebsd32/freebsd32_syscall.h	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,8 +2,8 @@
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD: src/sys/compat/freebsd32/freebsd32_syscall.h,v 1.7 2012/01/04 02:14:06 laffer1 Exp $
- * created from; MidnightBSD: src/sys/compat/freebsd32/syscalls.master,v 1.5 2011/12/29 02:33:28 laffer1 Exp 
+ * $FreeBSD$
+ * created from; MidnightBSD: src/sys/compat/freebsd32/syscalls.master,v 1.6 2012/01/04 02:14:06 laffer1 Exp 
  */
 
 #define	FREEBSD32_SYS_syscall	0


Property changes on: trunk/sys/compat/freebsd32/freebsd32_syscall.h
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.8
\ No newline at end of property
Modified: trunk/sys/compat/freebsd32/freebsd32_syscalls.c
===================================================================
--- trunk/sys/compat/freebsd32/freebsd32_syscalls.c	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/compat/freebsd32/freebsd32_syscalls.c	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,8 +2,8 @@
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD: src/sys/compat/freebsd32/freebsd32_syscalls.c,v 1.7 2012/01/04 02:14:06 laffer1 Exp $
- * created from; MidnightBSD: src/sys/compat/freebsd32/syscalls.master,v 1.5 2011/12/29 02:33:28 laffer1 Exp 
+ * $FreeBSD$
+ * created from; MidnightBSD: src/sys/compat/freebsd32/syscalls.master,v 1.6 2012/01/04 02:14:06 laffer1 Exp 
  */
 
 const char *freebsd32_syscallnames[] = {


Property changes on: trunk/sys/compat/freebsd32/freebsd32_syscalls.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.8
\ No newline at end of property
Modified: trunk/sys/compat/freebsd32/freebsd32_sysent.c
===================================================================
--- trunk/sys/compat/freebsd32/freebsd32_sysent.c	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/compat/freebsd32/freebsd32_sysent.c	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,8 +2,8 @@
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD: src/sys/compat/freebsd32/freebsd32_sysent.c,v 1.8 2012/01/04 02:14:06 laffer1 Exp $
- * created from; MidnightBSD: src/sys/compat/freebsd32/syscalls.master,v 1.5 2011/12/29 02:33:28 laffer1 Exp 
+ * $FreeBSD$
+ * created from; MidnightBSD: src/sys/compat/freebsd32/syscalls.master,v 1.6 2012/01/04 02:14:06 laffer1 Exp 
  */
 
 #include "opt_compat.h"


Property changes on: trunk/sys/compat/freebsd32/freebsd32_sysent.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.9
\ No newline at end of property
Modified: trunk/sys/compat/freebsd32/freebsd32_systrace_args.c
===================================================================
--- trunk/sys/compat/freebsd32/freebsd32_systrace_args.c	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/compat/freebsd32/freebsd32_systrace_args.c	2015-08-12 22:49:34 UTC (rev 7243)
@@ -248,7 +248,7 @@
 	case 33: {
 		struct access_args *p = params;
 		uarg[0] = (intptr_t) p->path; /* char * */
-		iarg[1] = p->flags; /* int */
+		iarg[1] = p->amode; /* int */
 		*n_args = 2;
 		break;
 	}
@@ -1868,7 +1868,7 @@
 	case 376: {
 		struct eaccess_args *p = params;
 		uarg[0] = (intptr_t) p->path; /* char * */
-		iarg[1] = p->flags; /* int */
+		iarg[1] = p->amode; /* int */
 		*n_args = 2;
 		break;
 	}
@@ -2702,7 +2702,7 @@
 		struct faccessat_args *p = params;
 		iarg[0] = p->fd; /* int */
 		uarg[1] = (intptr_t) p->path; /* char * */
-		iarg[2] = p->mode; /* int */
+		iarg[2] = p->amode; /* int */
 		iarg[3] = p->flag; /* int */
 		*n_args = 4;
 		break;


Property changes on: trunk/sys/compat/freebsd32/freebsd32_systrace_args.c
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1.1.1
\ No newline at end of property
Modified: trunk/sys/i386/linux/linux_proto.h
===================================================================
--- trunk/sys/i386/linux/linux_proto.h	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/i386/linux/linux_proto.h	2015-08-12 22:49:34 UTC (rev 7243)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/9/sys/i386/linux/syscalls.master 234316 2012-04-15 16:52:48Z netchild 
+ * created from FreeBSD
  */
 
 #ifndef _LINUX_SYSPROTO_H_
@@ -135,7 +135,7 @@
 };
 struct linux_access_args {
 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
-	char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
+	char amode_l_[PADL_(l_int)]; l_int amode; char amode_r_[PADR_(l_int)];
 };
 struct linux_nice_args {
 	char inc_l_[PADL_(l_int)]; l_int inc; char inc_r_[PADR_(l_int)];
@@ -988,7 +988,7 @@
 struct linux_faccessat_args {
 	char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
 	char filename_l_[PADL_(const char *)]; const char * filename; char filename_r_[PADR_(const char *)];
-	char mode_l_[PADL_(l_int)]; l_int mode; char mode_r_[PADR_(l_int)];
+	char amode_l_[PADL_(l_int)]; l_int amode; char amode_r_[PADR_(l_int)];
 };
 struct linux_pselect6_args {
 	register_t dummy;

Modified: trunk/sys/i386/linux/linux_syscall.h
===================================================================
--- trunk/sys/i386/linux/linux_syscall.h	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/i386/linux/linux_syscall.h	2015-08-12 22:49:34 UTC (rev 7243)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/9/sys/i386/linux/syscalls.master 234316 2012-04-15 16:52:48Z netchild 
+ * created from FreeBSD
  */
 
 #define	LINUX_SYS_exit	1

Modified: trunk/sys/i386/linux/linux_syscalls.c
===================================================================
--- trunk/sys/i386/linux/linux_syscalls.c	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/i386/linux/linux_syscalls.c	2015-08-12 22:49:34 UTC (rev 7243)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/9/sys/i386/linux/syscalls.master 234316 2012-04-15 16:52:48Z netchild 
+ * created from FreeBSD
  */
 
 const char *linux_syscallnames[] = {

Modified: trunk/sys/i386/linux/linux_sysent.c
===================================================================
--- trunk/sys/i386/linux/linux_sysent.c	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/i386/linux/linux_sysent.c	2015-08-12 22:49:34 UTC (rev 7243)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/9/sys/i386/linux/syscalls.master 234316 2012-04-15 16:52:48Z netchild 
+ * created from FreeBSD
  */
 
 #include <sys/param.h>

Modified: trunk/sys/i386/linux/linux_systrace_args.c
===================================================================
--- trunk/sys/i386/linux/linux_systrace_args.c	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/i386/linux/linux_systrace_args.c	2015-08-12 22:49:34 UTC (rev 7243)
@@ -238,7 +238,7 @@
 	case 33: {
 		struct linux_access_args *p = params;
 		uarg[0] = (intptr_t) p->path; /* char * */
-		iarg[1] = p->flags; /* l_int */
+		iarg[1] = p->amode; /* l_int */
 		*n_args = 2;
 		break;
 	}
@@ -2134,7 +2134,7 @@
 		struct linux_faccessat_args *p = params;
 		iarg[0] = p->dfd; /* l_int */
 		uarg[1] = (intptr_t) p->filename; /* const char * */
-		iarg[2] = p->mode; /* l_int */
+		iarg[2] = p->amode; /* l_int */
 		*n_args = 3;
 		break;
 	}

Modified: trunk/sys/kern/init_sysent.c
===================================================================
--- trunk/sys/kern/init_sysent.c	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/kern/init_sysent.c	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,8 +2,8 @@
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD$
- * created from FreeBSD: stable/9/sys/kern/syscalls.master 229723 2012-01-06 19:29:16Z jhb 
+ * $FreeBSD$
+ * created from FreeBSD
  */
 
 #include "opt_compat.h"

Modified: trunk/sys/kern/syscalls.c
===================================================================
--- trunk/sys/kern/syscalls.c	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/kern/syscalls.c	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,8 +2,8 @@
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD$
- * created from FreeBSD: stable/9/sys/kern/syscalls.master 229723 2012-01-06 19:29:16Z jhb 
+ * $FreeBSD$
+ * created from FreeBSD
  */
 
 const char *syscallnames[] = {

Modified: trunk/sys/kern/systrace_args.c
===================================================================
--- trunk/sys/kern/systrace_args.c	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/kern/systrace_args.c	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,7 +2,7 @@
  * System call argument to DTrace register array converstion.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD$
+ * $FreeBSD$
  * This file is part of the DTrace syscall provider.
  */
 
@@ -245,7 +245,7 @@
 	case 33: {
 		struct access_args *p = params;
 		uarg[0] = (intptr_t) p->path; /* char * */
-		iarg[1] = p->flags; /* int */
+		iarg[1] = p->amode; /* int */
 		*n_args = 2;
 		break;
 	}
@@ -2018,7 +2018,7 @@
 	case 376: {
 		struct eaccess_args *p = params;
 		uarg[0] = (intptr_t) p->path; /* char * */
-		iarg[1] = p->flags; /* int */
+		iarg[1] = p->amode; /* int */
 		*n_args = 2;
 		break;
 	}
@@ -2873,7 +2873,7 @@
 		struct faccessat_args *p = params;
 		iarg[0] = p->fd; /* int */
 		uarg[1] = (intptr_t) p->path; /* char * */
-		iarg[2] = p->mode; /* int */
+		iarg[2] = p->amode; /* int */
 		iarg[3] = p->flag; /* int */
 		*n_args = 4;
 		break;

Modified: trunk/sys/sys/syscall.h
===================================================================
--- trunk/sys/sys/syscall.h	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/sys/syscall.h	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,8 +2,8 @@
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD$
- * created from FreeBSD: stable/9/sys/kern/syscalls.master 229723 2012-01-06 19:29:16Z jhb 
+ * $FreeBSD$
+ * created from FreeBSD
  */
 
 #define	SYS_syscall	0

Modified: trunk/sys/sys/syscall.mk
===================================================================
--- trunk/sys/sys/syscall.mk	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/sys/syscall.mk	2015-08-12 22:49:34 UTC (rev 7243)
@@ -1,7 +1,7 @@
 # FreeBSD system call names.
 # DO NOT EDIT-- this file is automatically generated.
 # $FreeBSD$
-# created from FreeBSD: stable/9/sys/kern/syscalls.master 229723 2012-01-06 19:29:16Z jhb 
+# created from FreeBSD
 MIASM =  \
 	syscall.o \
 	exit.o \

Modified: trunk/sys/sys/sysproto.h
===================================================================
--- trunk/sys/sys/sysproto.h	2015-08-12 21:58:53 UTC (rev 7242)
+++ trunk/sys/sys/sysproto.h	2015-08-12 22:49:34 UTC (rev 7243)
@@ -2,8 +2,8 @@
  * System call prototypes.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $MidnightBSD$
- * created from FreeBSD: stable/9/sys/kern/syscalls.master 229723 2012-01-06 19:29:16Z jhb 
+ * $FreeBSD$
+ * created from FreeBSD
  */
 
 #ifndef _SYS_SYSPROTO_H_
@@ -158,7 +158,7 @@
 };
 struct access_args {
 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
-	char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
+	char amode_l_[PADL_(int)]; int amode; char amode_r_[PADR_(int)];
 };
 struct chflags_args {
 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
@@ -1073,7 +1073,7 @@
 };
 struct eaccess_args {
 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
-	char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)];
+	char amode_l_[PADL_(int)]; int amode; char amode_r_[PADR_(int)];
 };
 struct afs3_syscall_args {
 	char syscall_l_[PADL_(long)]; long syscall; char syscall_r_[PADR_(long)];
@@ -1532,7 +1532,7 @@
 struct faccessat_args {
 	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
 	char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
-	char mode_l_[PADL_(int)]; int mode; char mode_r_[PADR_(int)];
+	char amode_l_[PADL_(int)]; int amode; char amode_r_[PADR_(int)];
 	char flag_l_[PADL_(int)]; int flag; char flag_r_[PADR_(int)];
 };
 struct fchmodat_args {



More information about the Midnightbsd-cvs mailing list