Created
August 2, 2019 21:44
-
-
Save leandromoreira/973a5d02664c2a7cd7e2e2c1c969a73e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct file_operations { | |
struct module *owner; | |
loff_t (*llseek) (struct file *, loff_t, int); | |
ssize_t (*read) (struct file *, char __user *, size_t, loff_t *); | |
ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *); | |
//... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment