[완료]SIGCHLD 처리를 어디서 어떻게 해야 하는지요?

kkume의 이미지

p1.c

int main(int argc, char *argv[])
{       
    pid_t pid;
    const char *exe_argv1[] = {
        "/root/work/test/tmp/p2", "/root/work/test/tmp/p3"
    };
    const char *exe_argv2[] = { "p2", "p3" };
    char argv_tmp1[128]={0}, argv_tmp2[64]={0};
    int i;
 
    for (i = 0; i < 2; i++) {
        pid = fork();
        if (pid == 0) {
            sprintf(argv_tmp1, "%s", exe_argv1[i]);
            sprintf(argv_tmp2, "%s", exe_argv2[i]);
            execl(argv_tmp1, argv_tmp2, 0);
            exit(0);
        }
        else if (pid < 0) {
            printf("fork failded.\n");
            exit(1);
        }
    }
 
    while (1) {
        printf("%s: pid=[%d]\n", __FILE__, getpid());
        sleep(2);
    }
 
    return 0;
}

p2.c

int main(int argc, char *argv[])
{
    while (1) {
        printf("%s: pid=[%d]\n", __FILE__, getpid());
        sleep(2);
    }
 
    return 0;
}

p3.c

int main(int argc, char *argv[])
{
    while (1) {
        printf("%s: pid=[%d]\n", __FILE__, getpid());
        sleep(2);
    }
 
    return 0;
}

위와 같이 작성해서, p1을 실행하고 나서, 쉘에서 p2를 kill 하면 p2가 defunct 되는데요. 프로세스가 defunct가 되지 않게 하려면, SIGCHLD를 어떻게 처리 해야 하는지요?

p1에서 fork 시킨 p2, p3을 감시해야 합니다.

skygift의 이미지

시그널 처리에 관하여 공부하시면 됩니다.

기본적은 틀은 이렇습니다.

void signal_handler(int signum);

int main()
{
static struct sigaction action;

action.sa_handler = signal_handler;
sigfillset(&(action.sa_mask));
sigaction(SIGCHLD, &action, NULL);

.....
.....
return 0;
}

void signal_handler(int signum)
{
/* 시그널 관련 처리로직 */
.....
.....
}

kkume의 이미지

답변 감사드립니다.

새해 복 많이 받으세요..

powerson의 이미지


SIGCHLD는 fork된 child process에 문제가 발생할 경우에 parent process에게 보내는 signal입니다.

------------------------------------------------------
아직은 젊다. 모든 것을 할 수 있는 나이란 말이지.

------------------------------------------------------
아직은 젊다. 모든 것을 할 수 있는 나이란 말이지.

skygift의 이미지

문제가 발생할때만 SIGCHLD가 발생하는게 아니구요...

child process가 종료할때도 부모프로세스에게 알려주는 용도로 SIGCHLD가 보내집니다.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.