Searched defs:fileops (Results 1 – 1 of 1) sorted by relevance
/minix3/sys/sys/ |
H A D | file.h | 82 struct fileops { struct 83 int (*fo_read) (struct file *, off_t *, struct uio *, 85 int (*fo_write) (struct file *, off_t *, struct uio *, 87 int (*fo_ioctl) (struct file *, u_long, void *); 88 int (*fo_fcntl) (struct file *, u_int, void *); 89 int (*fo_poll) (struct file *, int); 90 int (*fo_stat) (struct file *, struct stat *); 91 int (*fo_close) (struct file *); 92 int (*fo_kqfilter) (struct file *, struct knote *); 93 void (*fo_restart) (struct file *); [all …]
|