Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at ff877ea80efa2015b6263766f78ee42c2a1b32f9 15 lines 246 B view raw
1#ifndef _LINUX_PATH_H 2#define _LINUX_PATH_H 3 4struct dentry; 5struct vfsmount; 6 7struct path { 8 struct vfsmount *mnt; 9 struct dentry *dentry; 10}; 11 12extern void path_get(struct path *); 13extern void path_put(struct path *); 14 15#endif /* _LINUX_PATH_H */