gpt4 book ai didi

c - lseek 的问题

转载 作者:行者123 更新时间:2023-11-30 14:31:26 28 4
gpt4 key购买 nike

我有以下 C 代码

long from = atol(buffer);
printf("From: %ld\n", from);

int file_fd = open(fullPath, O_RDONLY);
if (file_fd == -1) error("Error opening file");

if (from > -1)
{
int a = lseek(file_fd, from, SEEK_SET);
if (a == -1)
error("Error in lseek");
}

lseek 操作返回lseek 中的错误:参数无效,原因是

void error(char *msg)
{
perror(msg);
exit(1);
}

您知道如何调试它以便找出问题所在吗?我认为这很微不足道,但它让我发疯。

谢谢

最佳答案

您是否尝试过对进程进行 strace ?在深入研究源代码以找出“无效参数”抛出的位置之前,我会检查一下。

看到 Sean 的回答,您是否包含了正确的标题?

   #include <sys/types.h>
#include <unistd.h>

关于c - lseek 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1183301/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com