Changeset View
Changeset View
Standalone View
Standalone View
sys/sys/mount.h
| Show First 20 Lines • Show All 926 Lines • ▼ Show 20 Lines | |||||
| #else /* !_KERNEL */ | #else /* !_KERNEL */ | ||||
| #include <sys/cdefs.h> | #include <sys/cdefs.h> | ||||
| struct stat; | struct stat; | ||||
| __BEGIN_DECLS | __BEGIN_DECLS | ||||
| int fhlink(struct fhandle *, const char *); | |||||
| int fhlinkat(struct fhandle *, int, const char *); | |||||
| int fhopen(const struct fhandle *, int); | int fhopen(const struct fhandle *, int); | ||||
| int fhreadlink(struct fhandle *, char *, size_t); | |||||
| int fhstat(const struct fhandle *, struct stat *); | int fhstat(const struct fhandle *, struct stat *); | ||||
| int fhstatfs(const struct fhandle *, struct statfs *); | int fhstatfs(const struct fhandle *, struct statfs *); | ||||
| int fstatfs(int, struct statfs *); | int fstatfs(int, struct statfs *); | ||||
| int getfh(const char *, fhandle_t *); | int getfh(const char *, fhandle_t *); | ||||
| int getfhat(int, char *, struct fhandle *, int); | |||||
| int getfsstat(struct statfs *, long, int); | int getfsstat(struct statfs *, long, int); | ||||
| int getmntinfo(struct statfs **, int); | int getmntinfo(struct statfs **, int); | ||||
| int lgetfh(const char *, fhandle_t *); | int lgetfh(const char *, fhandle_t *); | ||||
| int mount(const char *, const char *, int, void *); | int mount(const char *, const char *, int, void *); | ||||
| int nmount(struct iovec *, unsigned int, int); | int nmount(struct iovec *, unsigned int, int); | ||||
| int statfs(const char *, struct statfs *); | int statfs(const char *, struct statfs *); | ||||
| int unmount(const char *, int); | int unmount(const char *, int); | ||||
| /* C library stuff */ | /* C library stuff */ | ||||
| int getvfsbyname(const char *, struct xvfsconf *); | int getvfsbyname(const char *, struct xvfsconf *); | ||||
| __END_DECLS | __END_DECLS | ||||
| #endif /* _KERNEL */ | #endif /* _KERNEL */ | ||||
| #endif /* !_SYS_MOUNT_H_ */ | #endif /* !_SYS_MOUNT_H_ */ | ||||