Searched defs:fileops (Results 1 – 1 of 1) sorted by relevance
/netbsd-src/sys/sys/ |
H A D | file.h | 85 struct fileops { struct 86 const char *fo_name; 87 int (*fo_read) (struct file *, off_t *, struct uio *, 89 int (*fo_write) (struct file *, off_t *, struct uio *, 91 int (*fo_ioctl) (struct file *, u_long, void *); 92 int (*fo_fcntl) (struct file *, u_int, void *); 93 int (*fo_poll) (struct file *, int); 94 int (*fo_stat) (struct file *, struct stat *); 95 int (*fo_close) (struct file *); 96 int (*fo_kqfilter) (struct file *, struct knote *); [all …]
|