home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / include / linux / path.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-12-24  |  246 b   |  16 lines

  1. #ifndef _LINUX_PATH_H
  2. #define _LINUX_PATH_H
  3.  
  4. struct dentry;
  5. struct vfsmount;
  6.  
  7. struct path {
  8.     struct vfsmount *mnt;
  9.     struct dentry *dentry;
  10. };
  11.  
  12. extern void path_get(struct path *);
  13. extern void path_put(struct path *);
  14.  
  15. #endif  /* _LINUX_PATH_H */
  16.