Advertisement
Guest User

path.h

a guest
Jun 30th, 2013
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1.  
  2. #ifndef _LINUX_PATH_H
  3. #define _LINUX_PATH_H
  4.  
  5. struct dentry;
  6. struct vfsmount;
  7.  
  8. struct path {
  9. struct vfsmount *mnt;
  10. struct dentry *dentry;
  11. };
  12.  
  13. extern void path_get(struct path *);
  14. extern void path_put(struct path *);
  15.  
  16. #endif /* _LINUX_PATH_H */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement