source: svn/trunk/newcon3bcm2_21bu/toolchain/mipsel-linux-uclibc/include/linux/dnotify.h @ 29

Last change on this file since 29 was 2, checked in by jglee, 11 years ago

first commit

  • Property svn:executable set to *
File size: 343 bytes
Line 
1#ifndef _LINUX_DNOTIFY_H
2#define _LINUX_DNOTIFY_H
3/*
4 * Directory notification for Linux
5 *
6 * Copyright (C) 2000,2002 Stephen Rothwell
7 */
8
9#include <linux/fs.h>
10
11struct dnotify_struct {
12        struct dnotify_struct * dn_next;
13        unsigned long           dn_mask;
14        int                     dn_fd;
15        struct file *           dn_filp;
16        fl_owner_t              dn_owner;
17};
18
19#endif /* _LINUX_DNOTIFY_H */
Note: See TracBrowser for help on using the repository browser.