From owner-cvs-sys Sun May 10 20:58:58 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA03194 for cvs-sys-outgoing; Sun, 10 May 1998 20:58:58 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA03152; Sun, 10 May 1998 20:58:48 -0700 (PDT) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA27207; Sun, 10 May 1998 20:55:31 -0700 (PDT) Date: Sun, 10 May 1998 20:55:31 -0700 (PDT) Message-Id: <199805110355.UAA27207@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/sys stat.h syscall-hide.h syscall.h syscall.mk sysproto.h vnode.h src/sys/kern init_sysent.c kern_descrip.c syscalls.c syscalls.master vfs_syscalls.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk dyson 1998/05/10 20:55:30 PDT Modified files: sys/sys stat.h syscall-hide.h syscall.h syscall.mk sysproto.h vnode.h sys/kern init_sysent.c kern_descrip.c syscalls.c syscalls.master vfs_syscalls.c Log: Fix the futimes/undelete/utrace conflict with other BSD's. Note that the only common usage of utrace (the possible problem with this commit) is with malloc, so this should be a real problem. Add the various NetBSD syscalls that allow full emulation of their development environment. Revision Changes Path 1.15 +33 -1 src/sys/sys/stat.h 1.44 +11 -2 src/sys/sys/syscall-hide.h 1.48 +13 -4 src/sys/sys/syscall.h 1.3 +12 -3 src/sys/sys/syscall.mk 1.37 +42 -6 src/sys/sys/sysproto.h 1.71 +3 -1 src/sys/sys/vnode.h 1.57 +12 -11 src/sys/kern/init_sysent.c 1.52 +51 -1 src/sys/kern/kern_descrip.c 1.50 +12 -11 src/sys/kern/syscalls.c 1.50 +12 -15 src/sys/kern/syscalls.master 1.101 +336 -75 src/sys/kern/vfs_syscalls.c