Add a vnode type for ptyfs PTYs and a mount name for ptyfs.

This commit is contained in:
christos 2004-11-10 17:30:56 +00:00
parent f03f3b9452
commit 3fb5aa0510
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: mount.h,v 1.124 2004/08/15 07:19:55 mycroft Exp $ */
/* $NetBSD: mount.h,v 1.125 2004/11/10 17:30:56 christos Exp $ */
/*
* Copyright (c) 1989, 1991, 1993
@ -102,10 +102,11 @@ struct statfs12 {
#define MOUNT_ADOSFS "adosfs" /* AmigaDOS Filesystem */
#define MOUNT_EXT2FS "ext2fs" /* Second Extended Filesystem */
#define MOUNT_CFS "coda" /* Coda Filesystem */
#define MOUNT_CODA "coda" /* Coda Filesystem */
#define MOUNT_CODA MOUNT_CFS /* Coda Filesystem */
#define MOUNT_FILECORE "filecore" /* Acorn Filecore Filesystem */
#define MOUNT_NTFS "ntfs" /* Windows/NT Filesystem */
#define MOUNT_SMBFS "smbfs" /* CIFS (SMB) */
#define MOUNT_PTYFS "ptyfs" /* Pseudo tty filesystem */
/*
* Structure per mounted file system. Each mounted file system has an

View File

@ -1,4 +1,4 @@
/* $NetBSD: vnode.h,v 1.126 2004/09/21 03:10:35 thorpej Exp $ */
/* $NetBSD: vnode.h,v 1.127 2004/11/10 17:30:56 christos Exp $ */
/*
* Copyright (c) 1989, 1993
@ -66,7 +66,7 @@ enum vtagtype {
VT_NON, VT_UFS, VT_NFS, VT_MFS, VT_MSDOSFS, VT_LFS, VT_LOFS, VT_FDESC,
VT_PORTAL, VT_NULL, VT_UMAP, VT_KERNFS, VT_PROCFS, VT_AFS, VT_ISOFS,
VT_UNION, VT_ADOSFS, VT_EXT2FS, VT_CODA, VT_FILECORE, VT_NTFS, VT_VFS,
VT_OVERLAY, VT_SMBFS
VT_OVERLAY, VT_SMBFS, VT_PTYFS
};
LIST_HEAD(buflists, buf);