linux内核中定义的struct proc_dir_entry
在哪里?
在/linux/proc_fs.h
中,它被声明为:(内核3.10)
struct proc_dir_entry;
我想因为这个我得到了这个错误:
dereferencing pointer to incomplete type
在这行代码中虽然包含/linux/proc_fs.h
:
while(strcmp (my_dir_entry->name,"tcp"))
答案 0 :(得分:4)
它在fs/proc/internal.h
中定义。