📄 p9.4.c
字号:
#include <stdio.h>#include <errno.h>#include <unistd.h>#include <fcntl.h>int main(int argc,char* argv[]){ int fd; int lock_result; struct flock lock; if(argc!=2){ printf("Usage: %s lock_file_name\n",argv[0]); return 1; } fd=open(argv[1],O_RDWR); if(fd<0){ perror("cannot open the file"); return 1; } lock_result=lockf(fd,F_LOCK,0); if(lock_result==-1){ perror("cannot get the lock...."); return 0; } printf("pid: %ld process lock the file\n",(long)getpid()); sleep(1); printf("pid: %ld process release the file\n",(long)getpid()); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -