私はプロセス間通信でファイルのロックを使用しています。次のコードは私を悩ませます... Macintoshのターミナルを介して実行すると
#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 f1 = {F_WRLCK , SEEK_SET , 0 , 0 , 0};
int fd;
f1.l_pid = getpid() ;
// if command line arguments , then assign a Read Lock
if (argc > 1)
{
f1.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 , &f1) == -1)
{
perror("fcntl");
exit(1);
}
printf("got lock !\n");
printf("Press <RETURN> to release lock:");
getchar();
f1.l_type = F_UNLCK ; //set to unlock same region
if (fcntl(fd, F_SETLK , &f1) == -1)
{
perror("fcntl");
exit(1);
}
printf("Unlocked .. \n");
close(fd);
return 0;
}
しかし、次のエラーが表示されます: fnctl: 無効な引数
この質問で私を助けてください...