segmentation fault 뜨는 이유를 모르겠습니다...

쇼난@Naver의 이미지

도저히 못찾겠습니다.
프로세스 3개를 번갈아 실행(파일 열어 카운트)하는 코드입니다.
자식1->자식2->부모->자식1->....

왜인지 모르겠는데 항상 13000~14000쯤에서 세그멘테이션 폴트가 뜹니다..
코드입니다.

#include <stdio.h>
#include <signal.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
 
char *filename;
int num;
sigset_t mask, unmask;
 
struct pid_s {
	pid_t cur;
	pid_t next;
}pid_struct;
 
 
void sig_wake(int signo)
{
 
	//LOCK
	sigprocmask(SIG_BLOCK, &mask, &unmask);
 
	//COUNT
	int cnt;
	char numstr[100];
  	int fp = open(filename, O_RDONLY|O_SYNC);
	lockf(fp,F_LOCK, 10L);
	read(fp, numstr, 100);
	cnt = atoi(numstr);
	close(fp);	
	cnt++;
	fp = open(filename, O_RDWR|O_SYNC|O_TRUNC,0644);
	lockf(fp,F_LOCK, 10L);
	sprintf(numstr, "%d",cnt);
	write(fp, numstr, 10L);
	close(fp);
	printf("process[%d] count %d target %d\n", getpid(), cnt, num);	
 
	//Kill to next process
	if(cnt < num){
		kill(pid_struct.next, SIGUSR1);
	}
 
	//UNLOCK
	sigsuspend(&unmask);
 
 
}
 
void sig_sleep(int signo){
	pause();
}
 
void sig_quit(int signo)
{
}
 
int main(int argc, char *argv[])
{
	pid_t child[3];
	int fd;
	int count, i, pidx;
	num = atoi(argv[1]);
 
	filename = argv[2]; 
 
	struct sigaction pwake, psleep, pquit;
 
	pwake.sa_handler = sig_wake;
	psleep.sa_handler = sig_sleep;
	pquit.sa_handler = sig_quit;
 
	sigaction(SIGUSR1, &pwake, NULL);
	sigaction(SIGUSR2, &psleep, NULL);
	sigaction(SIGQUIT, &pquit, NULL);
 
	sigfillset(&mask);
	sigfillset(&unmask);
	sigdelset(&unmask, SIGUSR1);
	sigdelset(&unmask, SIGUSR2);
	sigdelset(&unmask, SIGQUIT);
 
	//FILE OPEN	
 
	//Test 1 : Check that an integer greater than 0
	if(num <= 0){
		printf("Wrong Input Number\n");
		return -1;	
	}
 
	//Test 2 : Does the file exist
	fd = open(filename, O_RDWR|O_CREAT|O_TRUNC,0644);
	write(fd,"0", 4);
	close(fd);
 
	for(i=1; i>=0; i--) {
		child[i] = fork();
		if(child[i] == 0)               
			break;
	}
 
	if (i == 1){
		printf("in here\n");
		pid_struct.next = getppid();
		pid_struct.cur = getpid();
		kill(pid_struct.next, SIGUSR1);
		pause();
	}
	else{
		pid_struct.next = child[i+1];
		pid_struct.cur = getpid();
		pause();
	}
 
 
 
 
 
	return 0;
}
chocokeki의 이미지

write(fd,"0", 4);
이래도 되나요?

m4170의 이미지

strace -ff 옵션을 주고 한번 프로세스가 어떤 위치에서 시그널을 받는지 확인해 보시는 것은 어떠신가요?
(실행예 : strace -ff ./a.out)

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.