Разобрался, как лочить файл на CIFS.

This commit is contained in:
Kolan Sh 2011-06-30 19:12:23 +04:00
parent 4ca18afee7
commit 2ce1fe251e
1 changed files with 53 additions and 13 deletions

View File

@ -7,15 +7,12 @@
#include <signal.h>
#include <err.h>
#include <errno.h>
#include <string.h>
void sighandler(int signum)
/* не работает с nfs */
void ex1()
{
printf("signal %d received\n", signum);
}
int main()
{
/* не работает с nfs
FILE *f = fopen("fcntl_lockfile.c", "wb");
if(f != NULL && !flock(fileno(f), LOCK_EX | LOCK_NB))// !ftrylockfile(f))
@ -25,11 +22,11 @@ int main()
puts("Failed!");
getchar();
}
return 0;
*/
/* 1 процесс
/* только для 1-го процесса */
void ex2()
{
FILE *f = fopen("fcntl_lockfile.c", "wb");
if(f != NULL && !ftrylockfile(f)) {
@ -40,13 +37,21 @@ int main()
puts("Failed!");
getchar();
}
return 0;
*/
/* с cifs не работает */
void sighandler(int signum)
{
printf("signal %d received\n", signum);
}
void ex3()
{
signal(SIGPOLL, sighandler);
int fd = open("fcntl_lockfile.c", O_RDWR | O_NONBLOCK);
//~ int fd = open("/mnt/smb/fs04/Users/ПРОЕКТЫ/Отчетник Климов/lock_ex", O_RDWR | O_NONBLOCK);
//~ int fd = open("/mnt/smb/kolan/shared/lock_ex", O_RDWR | O_NONBLOCK);
if (fd == -1)
err(errno, "open()");
@ -57,6 +62,41 @@ int main()
puts("Success!");
getchar();
}
/* зашибись - метод :)
* Консультативная (advisory) блокировка... */
void ex4()
{
signal(SIGPOLL, sighandler);
//~ int fd = open("fcntl_lockfile.c", O_RDWR | O_NONBLOCK);
//~ int fd = open("/mnt/smb/fs04/Users/ПРОЕКТЫ/Отчетник Климов/lock_ex", O_RDWR | O_NONBLOCK);
int fd = open("/mnt/smb/kolan/shared/lock_ex", O_RDWR | O_NONBLOCK);
if (fd == -1)
err(errno, "open()");
struct flock flck;
memset(&flck, 0, sizeof(flck));
flck.l_type = F_WRLCK;
if (fcntl(fd, F_SETLK, &flck) == -1)
err(errno, "fcntl()");
puts("Success!");
getchar();
}
int main()
{
//~ ex1();
//~ ex2();
//~ ex3();
ex4();
return 0;
}