ktrace.c: added decl of ktrnamei
lkm.h: added decl of lkmdispatch mount.h: added decl of vfs_busy,vfs_unbusy syscall: The "created from" changed.
This commit is contained in:
parent
0dc7d9074f
commit
c172c3e66a
@ -31,7 +31,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)ktrace.h 8.1 (Berkeley) 6/2/93
|
||||
* $Id: ktrace.h,v 1.2 1994/08/02 07:53:09 davidg Exp $
|
||||
* $Id: ktrace.h,v 1.3 1994/08/21 04:41:49 paul Exp $
|
||||
*/
|
||||
|
||||
#ifndef _SYS_KTRACE_H_
|
||||
@ -149,7 +149,9 @@ struct ktr_csw {
|
||||
#define KTRFAC_INHERIT 0x40000000 /* pass trace flags to children */
|
||||
#define KTRFAC_ACTIVE 0x20000000 /* ktrace logging in progress, ignore */
|
||||
|
||||
#ifndef KERNEL
|
||||
#ifdef KERNEL
|
||||
int ktrnamei __P((struct vnode *vp,char *path));
|
||||
#else /* KERNEL */
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
|
||||
|
@ -34,7 +34,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: lkm.h,v 1.1 1994/08/20 02:23:40 davidg Exp $
|
||||
* $Id: lkm.h,v 1.2 1994/09/21 03:47:30 wollman Exp $
|
||||
*/
|
||||
|
||||
#ifndef _SYS_LKM_H_
|
||||
@ -60,6 +60,7 @@ typedef enum loadmod {
|
||||
|
||||
#ifdef KERNEL
|
||||
|
||||
|
||||
/*
|
||||
* Loadable system call
|
||||
*/
|
||||
@ -285,6 +286,8 @@ extern int nosys();
|
||||
} \
|
||||
return lkmdispatch(lkmtp, cmd);
|
||||
|
||||
int lkmdispatch __P((struct lkm_table *lkmtp, int cmd));
|
||||
|
||||
#endif /* KERNEL */
|
||||
|
||||
/****************************************************************************/
|
||||
|
@ -31,7 +31,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)mount.h 8.13 (Berkeley) 3/27/94
|
||||
* $Id: mount.h,v 1.8 1994/09/21 03:47:31 wollman Exp $
|
||||
* $Id: mount.h,v 1.10 1994/09/22 01:05:03 wollman Exp $
|
||||
*/
|
||||
|
||||
#ifndef _SYS_MOUNT_H_
|
||||
@ -463,9 +463,11 @@ int vfs_export /* process mount export info */
|
||||
__P((struct mount *, struct netexport *, struct export_args *));
|
||||
struct netcred *vfs_export_lookup /* lookup host in fs export list */
|
||||
__P((struct mount *, struct netexport *, struct mbuf *));
|
||||
int vfs_lock __P((struct mount *)); /* lock a vfs */
|
||||
int vfs_mountedon __P((struct vnode *));/* is a vfs mounted on vp */
|
||||
void vfs_unlock __P((struct mount *)); /* unlock a vfs */
|
||||
int vfs_lock __P((struct mount *)); /* lock a vfs */
|
||||
int vfs_mountedon __P((struct vnode *)); /* is a vfs mounted on vp */
|
||||
void vfs_unlock __P((struct mount *)); /* unlock a vfs */
|
||||
int vfs_busy __P((struct mount *)); /* mark a vfs busy */
|
||||
void vfs_unbusy __P((struct mount *)); /* mark a vfs not busy */
|
||||
extern TAILQ_HEAD(mntlist, mount) mountlist; /* mounted filesystem list */
|
||||
extern struct vfsops *vfssw[]; /* filesystem type table */
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call hiders.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from $Id: syscalls.master,v 1.8 1994/09/13 14:46:54 dfr Exp $
|
||||
* created from $Id: syscalls.master,v 1.9 1994/09/18 20:39:50 wollman Exp $
|
||||
*/
|
||||
|
||||
HIDE_POSIX(fork)
|
||||
|
@ -2,7 +2,7 @@
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from $Id: syscalls.master,v 1.8 1994/09/13 14:46:54 dfr Exp $
|
||||
* created from $Id: syscalls.master,v 1.9 1994/09/18 20:39:50 wollman Exp $
|
||||
*/
|
||||
|
||||
#define SYS_syscall 0
|
||||
|
Loading…
Reference in New Issue
Block a user