lock 설정 에러가..ㅠㅠ
락을 설정을 해서 락이 지금 작동하는지 알아볼려고 하는데요 락설정이
에러가 났다고 나오네요 근데 어디가 설정이 잘못되는지 아무리 찾아봐
도 안보이네요 소스는 동일한 파일을 열어서 한 넘이 락을 하고 다른 놈
이 또 락을 하면 나중에 하는 사람이 멈추도록 하는건데 errno에 값이
안들어오네요 .ㅠㅠ 고수님들 도움좀..
#include
#include
#include
#include
#include
#include
#include
#define FALSE 0
#define SEC_SET 1000000
#define tzp 0
int main(void)
{
char print_data;
FILE *fd;
pid_t pid;
// file open
#include
#include
#include
#include
#include
#include
#include
#define FALSE 0
#define SEC_SET 1000000
#define tzp 0
int main(void)
{
char print_data;
FILE *fd;
pid_t pid;
// file open
fd = fopen("test", "r");
switch(pid = fork())
{
case 0
lock_test(fd, F_RDLCK, 0, 10);
printf("Child\n");
break;
default
wait_time (tzp,SEC_SET);
lock_test(fd, F_RDLCK, 1, 10);
printf("pae~!!\n");
break;
}
printf("unlocking\n");
lock_test(fd, F_UNLCK, 0, 10);
to_time();
exit(0);
}
int lock_test(int file, int type, int start, int len)
{
struct flock data_lock;
data_lock.l_type = type;
data_lock.l_whence = SEEK_SET;
data_lock.l_start = start;
data_lock.l_len = len;
if ( fcntl(file, F_SETLK, &data_lock) < FALSE){
if (errno == EACCES || errno == EAGAIN || errno ==
EBADF){
printf("Error test\n");
return(0);
}
else
{
printf("Error2\n");
return(1);
}}
}
int wait_time(int sec, int usec)
{
struct timeval the_time;
the_time.tv_sec = sec;
the_time.tv_usec = usec;
select(0, (fd_set*) 0, (fd_set*) 0, (fd_set*) 0, &the_time);
return(0);
}
int to_time()
{
// the_time
struct timeval Hab_time;
struct tm *tm_ptr;
gettimeofday(&Hab_time, tzp);
tm_ptr = gmtime(&Hab_time.tv_sec);
printf("hour %d년 %d월 %d일 %d%
d\n", tm_ptr->tm_year +
1900, tm_ptr->tm_mon +1,
tm_ptr->tm_mday, tm_ptr->tm_hour-
3, tm_ptr->tm_min);
return(0);
}
Re: lock 설정 에러가..ㅠㅠ
1일째 wrote..
락을 설정을 해서 락이 지금 작동하는지 알아볼려고 하는데요 락설정이
에러가 났다고 나오네요 근데 어디가 설정이 잘못되는지 아무리 찾아봐
도 안보이네요 소스는 동일한 파일을 열어서 한 넘이 락을 하고 다른 놈
이 또 락을 하면 나중에 하는 사람이 멈추도록 하는건데 errno에 값이
안들어오네요 .ㅠㅠ 고수님들 도움좀..
#include <unistd.h>
#include <errno.h>
#include <stdio.h>
#include <fcntl.h>
#include <time.h>
#include <sys/time.h>
#include <sys/types.h>
#define FALSE 0
#define SEC_SET 1000000
#define tzp 0
int main(void)
{
char print_data;
FILE *fd;
pid_t pid;
// file open
#include <unistd.h>
#include <errno.h>
#include <stdio.h>
#include <fcntl.h>
#include <time.h>
#include <sys/time.h>
#include <sys/types.h>
#define FALSE 0
#define SEC_SET 1000000
#define tzp 0
int main(void)
{
char print_data;
FILE *fd; // 아까 말씀드린건데여 이것을 int fd;로 하시구여..
pid_t pid;
// file open
fd = fopen("test", "r"); // 이것을
// fd = open(filename, O_RDONLY);
// 하셔야 fcntl()가 제대로 작동안합니다.
// 분명 에러는 아규먼트 인자 타입이 틀렸다고 에러가 날겁니
다.
switch(pid = fork())
{
case 0
lock_test(fd, F_RDLCK, 0, 10);
printf("Child\n");
break;
default
wait_time (tzp,SEC_SET);
lock_test(fd, F_RDLCK, 1, 10);
printf("pae~!!\n");
break;
}
printf("unlocking\n");
lock_test(fd, F_UNLCK, 0, 10);
to_time();
exit(0);
}
int lock_test(int file, int type, int start, int len)
{
struct flock data_lock;
data_lock.l_type = type;
data_lock.l_whence = SEEK_SET;
data_lock.l_start = start;
data_lock.l_len = len;
if ( fcntl(file, F_SETLK, &data_lock) < FALSE){
if (errno == EACCES || errno == EAGAIN || errno ==
EBADF){
printf("Error test\n");
return(0);
}
else
{
printf("Error2\n");
return(1);
}}
}
int wait_time(int sec, int usec)
{
struct timeval the_time;
the_time.tv_sec = sec;
the_time.tv_usec = usec;
select(0, (fd_set*) 0, (fd_set*) 0, (fd_set*) 0, &the_time);
return(0);
}
int to_time()
{
// the_time
struct timeval Hab_time;
struct tm *tm_ptr;
gettimeofday(&Hab_time, tzp);
tm_ptr = gmtime(&Hab_time.tv_sec);
printf("hour %d년 %d월 %d일 %d%
d\n", tm_ptr- >tm_year +
1900, tm_ptr->tm_mon +1,
tm_ptr->tm_mday, tm_ptr->tm_hour-
3, tm_ptr->tm_min);
return(0);
}
댓글 달기