open系统调用-CSDN博客

网站介绍:1.应用层出发调用open函数 --->>> 在进程里调用的在创建进程的时候,内核会为该进程创建一个结构体来描述当前进程的所有信息struct task_struct{ pid_t pid; pid_t tgid; ... struct files_struct *files;};struct files_struct { struct file * fd_array[NR_OP._open系统调用