我正在学习与用户级程序通信的内核模块,最初是用
FILE *pFile = fopen(...)
然后给它写信
char *str = malloc(10); fputs(str, pFile);
然而,现在我需要使用 #include <fcntl.h> 中的功能来尝试一些异步通知,而我的示例则使用
#include <fcntl.h>
int pFile;