dnotify.h
来自「Linux Kernel 2.6.9 for OMAP1710」· C头文件 代码 · 共 28 行
H
28 行
/* * Directory notification for Linux * * Copyright (C) 2000,2002 Stephen Rothwell */#include <linux/fs.h>struct dnotify_struct { struct dnotify_struct * dn_next; unsigned long dn_mask; /* Events to be notified see linux/fcntl.h */ int dn_fd; struct file * dn_filp; fl_owner_t dn_owner;};extern void __inode_dir_notify(struct inode *, unsigned long);extern void dnotify_flush(struct file *filp, fl_owner_t id);extern int fcntl_dirnotify(int, struct file *, unsigned long);void dnotify_parent(struct dentry *dentry, unsigned long event);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 + =
减小字号Ctrl + -
显示快捷键?