当前位置: 技术问答>linux和unix
请问Redhat2.6的内核的linux支持强制性文件锁吗?
来源: 互联网 发布时间:2016-12-02
本文导语: 我有如下程序,用来检测是否支持强制性文件锁: int main(int argc, char **argv) { int fd; pid_t pid; char buf[5]; struct stat statbuf; if(argc != 2) { ...
我有如下程序,用来检测是否支持强制性文件锁:
int main(int argc, char **argv) {
int fd;
pid_t pid;
char buf[5];
struct stat statbuf;
if(argc != 2) {
fprintf(stderr, "usage: %s filenamen", argv[0]);
exit(1);
}
if((fd = open(argv[1], O_RDWR | O_CREAT | O_TRUNC, 0666))
int main(int argc, char **argv) {
int fd;
pid_t pid;
char buf[5];
struct stat statbuf;
if(argc != 2) {
fprintf(stderr, "usage: %s filenamen", argv[0]);
exit(1);
}
if((fd = open(argv[1], O_RDWR | O_CREAT | O_TRUNC, 0666))