我试图在unix中学习编程c。所以我通读Beejs Guide并尝试了解有关文件锁定的更多信息。
所以我刚刚从他那里拿了一些代码示例并尝试读出文件是否被锁定但是每次我都这样做,我得到errno 22
代表无效的参数。所以我检查了我的代码是否有无效的参数,但我无法找到它们。有人能帮助我吗?
我的错误发生在:
if( fcntl(fd, F_GETLK, &fl2) < 0 ) {
printf("Error occured!\n");
}
完整代码:
/*
** lockdemo.c -- shows off your system's file locking. Rated R.
*/
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
int main(int argc, char *argv[])
{
/* l_type l_whence l_start l_len l_pid */
struct flock fl = {F_WRLCK, SEEK_SET, 0, 0, 0 };
struct flock fl2;
int fd;
fl.l_pid = getpid();
if (argc > 1)
fl.l_type = F_RDLCK;
if ((fd = open("lockdemo.c", O_RDWR)) == -1) {
perror("open");
exit(1);
}
printf("Press <RETURN> to try to get lock: ");
getchar();
printf("Trying to get lock...");
if (fcntl(fd, F_SETLKW, &fl) == -1) {
perror("fcntl");
exit(1);
}
printf("got lock\n");
printf("Press <RETURN> to release lock: ");
getchar();
fl.l_type = F_UNLCK; /* set to unlock same region */
if (fcntl(fd, F_SETLK, &fl) == -1) {
perror("fcntl");
exit(1);
}
printf("Unlocked.\n");
printf("Press <RETURN> to check lock: ");
getchar();
if( fcntl(fd, F_GETLK, &fl2) < 0 ) {
printf("Error occured!\n");
}
else{
if(fl2.l_type == F_UNLCK) {
printf("no lock\n");
}
else{
printf("file is locked\n");
printf("Errno: %d\n", errno);
}
}
close(fd);
return 0;
}
我刚刚添加了fl2
,部分位于底部。
答案 0 :(得分:0)
fcntl(fd, F_GETLK, &fl2)
获取阻止fl2
中锁定描述的第一个锁定,并使用该信息覆盖fl2
。 (比较fcntl - file control)
这意味着您必须将fl2
初始化为有效的struct flock
在致电fcntl()
之前。