This commit is contained in:
pooka 2007-08-15 14:08:37 +00:00
parent a768213636
commit a7e8116850
1 changed files with 39 additions and 1 deletions

View File

@ -1,4 +1,11 @@
/* $NetBSD: namei.h,v 1.50 2007/05/19 22:11:25 christos Exp $ */
/* $NetBSD: namei.h,v 1.51 2007/08/15 14:08:37 pooka Exp $ */
/*
* WARNING: GENERATED FILE. DO NOT EDIT
* (edit namei.src and run make namei)
* by: NetBSD: gennameih.awk,v 1.1 2007/08/15 14:08:11 pooka Exp
* from: NetBSD: namei.src,v 1.1 2007/08/15 14:08:11 pooka Exp
*/
/*
* Copyright (c) 1985, 1989, 1991, 1993
@ -221,4 +228,35 @@ struct nchstats {
#ifdef _KERNEL
extern struct nchstats nchstats;
#endif
/* #endif !_SYS_NAMEI_H_ (generated by gennameih.awk) */
/* Definitions match above, but with NAMEI_ prefix */
#define NAMEI_LOOKUP 0
#define NAMEI_CREATE 1
#define NAMEI_DELETE 2
#define NAMEI_RENAME 3
#define NAMEI_OPMASK 3
#define NAMEI_LOCKLEAF 0x0004
#define NAMEI_LOCKPARENT 0x0008
#define NAMEI_NOCACHE 0x0020
#define NAMEI_FOLLOW 0x0040
#define NAMEI_NOFOLLOW 0x0000
#define NAMEI_TRYEMULROOT 0x0010
#define NAMEI_EMULROOTSET 0x0080
#define NAMEI_MODMASK 0x00fc
#define NAMEI_NOCROSSMOUNT 0x0000100
#define NAMEI_RDONLY 0x0000200
#define NAMEI_HASBUF 0x0000400
#define NAMEI_SAVENAME 0x0000800
#define NAMEI_SAVESTART 0x0001000
#define NAMEI_ISDOTDOT 0x0002000
#define NAMEI_MAKEENTRY 0x0004000
#define NAMEI_ISLASTCN 0x0008000
#define NAMEI_ISSYMLINK 0x0010000
#define NAMEI_ISWHITEOUT 0x0020000
#define NAMEI_DOWHITEOUT 0x0040000
#define NAMEI_REQUIREDIR 0x0080000
#define NAMEI_CREATEDIR 0x0200000
#define NAMEI_PARAMASK 0x03fff00
#endif /* !_SYS_NAMEI_H_ */