⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dnotify.h

📁 这是linux内核C源代码58的源程序
💻 H
字号:
/* * Directory notification for Linux * * Copyright 2000 (C) Stephen Rothwell */struct dnotify_struct {	struct dnotify_struct *	dn_next;	int			dn_magic;	unsigned long		dn_mask;	/* Events to be notified						   see linux/fcntl.h */	int			dn_fd;	struct file *		dn_filp;};#define DNOTIFY_MAGIC	0x444E4F54extern void __inode_dir_notify(struct inode *, unsigned long);extern int fcntl_dirnotify(int, struct file *, unsigned long);static inline void inode_dir_notify(struct inode *inode, unsigned long event){	if ((inode)->i_dnotify_mask & (event))		__inode_dir_notify(inode, event);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -