Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/osf1 regen after adding flock.



details:   https://anonhg.NetBSD.org/src/rev/e9b5fa1a2389
branches:  trunk
changeset: 511620:e9b5fa1a2389
user:      dmcmahill <dmcmahill%NetBSD.org@localhost>
date:      Sat Jun 23 02:46:25 2001 +0000

description:
regen after adding flock.

diffstat:

 sys/compat/osf1/osf1_syscall.h     |  7 +++++--
 sys/compat/osf1/osf1_syscallargs.h |  5 +++--
 sys/compat/osf1/osf1_syscalls.c    |  6 +++---
 sys/compat/osf1/osf1_sysent.c      |  8 ++++----
 4 files changed, 15 insertions(+), 11 deletions(-)

diffs (102 lines):

diff -r 63b2ad76166c -r e9b5fa1a2389 sys/compat/osf1/osf1_syscall.h
--- a/sys/compat/osf1/osf1_syscall.h    Sat Jun 23 02:45:54 2001 +0000
+++ b/sys/compat/osf1/osf1_syscall.h    Sat Jun 23 02:46:25 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_syscall.h,v 1.44 2001/05/30 11:37:30 mrg Exp $ */
+/* $NetBSD: osf1_syscall.h,v 1.45 2001/06/23 02:46:25 dmcmahill Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.35 2001/04/04 19:41:00 ross Exp 
+ * created from        NetBSD: syscalls.master,v 1.37 2001/06/23 02:45:54 dmcmahill Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: */
@@ -288,6 +288,9 @@
 /* syscall: "ftruncate" ret: "int" args: "int" "off_t" */
 #define        OSF1_SYS_ftruncate      130
 
+/* syscall: "flock" ret: "int" args: "int" "int" */
+#define        OSF1_SYS_flock  131
+
 /* syscall: "setgid" ret: "int" args: "gid_t" */
 #define        OSF1_SYS_setgid 132
 
diff -r 63b2ad76166c -r e9b5fa1a2389 sys/compat/osf1/osf1_syscallargs.h
--- a/sys/compat/osf1/osf1_syscallargs.h        Sat Jun 23 02:45:54 2001 +0000
+++ b/sys/compat/osf1/osf1_syscallargs.h        Sat Jun 23 02:46:25 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_syscallargs.h,v 1.45 2001/05/30 11:37:30 mrg Exp $ */
+/* $NetBSD: osf1_syscallargs.h,v 1.46 2001/06/23 02:46:25 dmcmahill Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.35 2001/04/04 19:41:00 ross Exp 
+ * created from        NetBSD: syscalls.master,v 1.37 2001/06/23 02:45:54 dmcmahill Exp 
  */
 
 #ifndef _OSF1_SYS__SYSCALLARGS_H_
@@ -452,6 +452,7 @@
 int    sys___posix_rename(struct proc *, void *, register_t *);
 int    osf1_sys_truncate(struct proc *, void *, register_t *);
 int    osf1_sys_ftruncate(struct proc *, void *, register_t *);
+int    sys_flock(struct proc *, void *, register_t *);
 int    osf1_sys_setgid(struct proc *, void *, register_t *);
 int    osf1_sys_sendto(struct proc *, void *, register_t *);
 int    sys_shutdown(struct proc *, void *, register_t *);
diff -r 63b2ad76166c -r e9b5fa1a2389 sys/compat/osf1/osf1_syscalls.c
--- a/sys/compat/osf1/osf1_syscalls.c   Sat Jun 23 02:45:54 2001 +0000
+++ b/sys/compat/osf1/osf1_syscalls.c   Sat Jun 23 02:46:25 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_syscalls.c,v 1.43 2001/05/30 11:37:30 mrg Exp $ */
+/* $NetBSD: osf1_syscalls.c,v 1.44 2001/06/23 02:46:25 dmcmahill Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.35 2001/04/04 19:41:00 ross Exp 
+ * created from        NetBSD: syscalls.master,v 1.37 2001/06/23 02:45:54 dmcmahill Exp 
  */
 
 #if defined(_KERNEL_OPT)
@@ -153,7 +153,7 @@
        "__posix_rename",                       /* 128 = __posix_rename */
        "truncate",                     /* 129 = truncate */
        "ftruncate",                    /* 130 = ftruncate */
-       "#131 (unimplemented flock)",           /* 131 = unimplemented flock */
+       "flock",                        /* 131 = flock */
        "setgid",                       /* 132 = setgid */
        "sendto",                       /* 133 = sendto */
        "shutdown",                     /* 134 = shutdown */
diff -r 63b2ad76166c -r e9b5fa1a2389 sys/compat/osf1/osf1_sysent.c
--- a/sys/compat/osf1/osf1_sysent.c     Sat Jun 23 02:45:54 2001 +0000
+++ b/sys/compat/osf1/osf1_sysent.c     Sat Jun 23 02:46:25 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_sysent.c,v 1.45 2001/05/30 11:37:30 mrg Exp $ */
+/* $NetBSD: osf1_sysent.c,v 1.46 2001/06/23 02:46:25 dmcmahill Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.35 2001/04/04 19:41:00 ross Exp 
+ * created from        NetBSD: syscalls.master,v 1.37 2001/06/23 02:45:54 dmcmahill Exp 
  */
 
 #if defined(_KERNEL_OPT)
@@ -284,8 +284,8 @@
            osf1_sys_truncate },                /* 129 = truncate */
        { 2, s(struct osf1_sys_ftruncate_args), 0,
            osf1_sys_ftruncate },               /* 130 = ftruncate */
-       { 0, 0, 0,
-           sys_nosys },                        /* 131 = unimplemented flock */
+       { 2, s(struct sys_flock_args), 0,
+           sys_flock },                        /* 131 = flock */
        { 1, s(struct osf1_sys_setgid_args), 0,
            osf1_sys_setgid },                  /* 132 = setgid */
        { 6, s(struct osf1_sys_sendto_args), 0,



Home | Main Index | Thread Index | Old Index