Changeset View
Changeset View
Standalone View
Standalone View
sys/sys/file.h
| Show All 31 Lines | |||||
| #ifndef _SYS_FILE_H_ | #ifndef _SYS_FILE_H_ | ||||
| #define _SYS_FILE_H_ | #define _SYS_FILE_H_ | ||||
| #ifndef _KERNEL | #ifndef _KERNEL | ||||
| #include <sys/types.h> /* XXX */ | #include <sys/types.h> /* XXX */ | ||||
| #include <sys/fcntl.h> | #include <sys/fcntl.h> | ||||
| #include <sys/unistd.h> | #include <sys/unistd.h> | ||||
| #else | #else | ||||
| #include <sys/queue.h> | #include <sys/errno.h> | ||||
| #include <sys/refcount.h> | |||||
| #include <sys/_lock.h> | #include <sys/_lock.h> | ||||
| #include <sys/_mutex.h> | #include <sys/_mutex.h> | ||||
| #include <sys/_null.h> | |||||
| #include <sys/queue.h> | |||||
| #include <sys/refcount.h> | |||||
| #include <vm/vm.h> | #include <vm/vm.h> | ||||
| struct filedesc; | struct filedesc; | ||||
| struct proc; | |||||
| struct stat; | struct stat; | ||||
| struct thread; | struct thread; | ||||
| struct uio; | struct uio; | ||||
| struct knote; | struct knote; | ||||
| struct vnode; | struct vnode; | ||||
| struct nameidata; | struct nameidata; | ||||
| #endif /* _KERNEL */ | #endif /* _KERNEL */ | ||||
| ▲ Show 20 Lines • Show All 454 Lines • Show Last 20 Lines | |||||