我正在努力学习在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和底部的部分。

最佳答案

fcntl(fd, F_GETLK, &fl2)获取阻止fl2中的锁描述的第一个锁,并用该信息覆盖fl2(比较fcntl - file control
这意味着您必须将fl2初始化为有效的struct flock
在调用fcntl()之前。

08-26 05:43