重複の可能性:
構造体の変数名の前のドットはどういう意味ですか?
const struct file_operations generic_ro_fops = {
.llseek = generic_file_llseek,
.read = do_sync_read,
// ....other stuffs
};
私の質問は:
1)の意味.llseek
と使用方法.
...file_operations構造体の定義は次のとおりです。
2)上記の構造体で:前にドットを付けずにllseek = generic_file_llseek ;
ポインタがllseek
指すようにするには、次のように言うことができますか?//私の貧弱な英語でごめんなさいgeneric_file_llseek
.
llseek
struct file_operations {
loff_t (*llseek) (struct file *, loff_t, int);
ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
//....other stuffs
}