[완료] sigprocmask() 함수에 관한 질문입니다.

beggarstar의 이미지

리눅스 환경에서 시스템프로그래밍을 공부 하고 있습니다.
시그널 부분에서 sigprocmask() 함수 동작이 이해가 되지 않아 질문 드립니다.

아래 코드는 조인시 위키/시스템프로그래밍/시그널/SignalHow 에서 참조했습니다.

#include
...
 
void sig_int( int signo );
void sig_usr( int signo );
 
int main()
{
    int i = 0;
    struct sigaction intsig, usrsig;
 
    usrsig.sa_handler   = sig_usr;
    usrsig.sa_flags     = 0;
    sigemptyset( &usrsig.sa_mask );
 
    intsig.sa_handler   = sig_int;
    intsig.sa_flags     = 0;
    sigemptyset( &intsig.sa_mask );
 
    if ( sigaction( SIGINT, &intsig, 0 ) == -1 )
    {
        printf( "signal(SIGALRM) error" );
        return -1;
    }    
 
    if ( sigaction( SIGUSR2, &usrsig, 0 ) == -1 )
    {   
        printf( "signal(SIGUSR2) error" );
        return -1;
    }    
 
    while( 1 )
    {
        printf( "%d\n", i );
        i++;
        sleep( 1 );
    }
}
 
void sig_int( int signo )
{
    sigset_t sigset, oldset;
    sigfillset( &sigset );
 
    // 새로들어오는 모든 시그널에 대해서 block 한다. 
    if ( sigprocmask( SIG_BLOCK, &sigset, &oldset ) < 0 )
    {
        printf( "sigprocmask %d error \n", signo );
    }
    fprintf( stderr, "SIGINT !!!!\n" );
    sleep( 5 );
}
 
void sig_usr( int signo )
{
    printf( "SIG_USR2\n" );
}

위 코드는 SIGINT 시그널에 대한 핸들러 처리 중에 sigprocmask() 함수를 이용함으로서 다른 모든 시그널을 BLOCK 해
핸들러 실행의 원자성을 보장하는 예제 입니다.
핸들러 안에서 sigprocmask( SIG_BLOCK, &sigset, &oldset ) 실행을 통해 시그널들을 BLOCK하고 핸들러가 리턴하면 BLOCK 된 시그널들이 다시 UNBLOCK 되 대기중이던 다른 시그널에 대한 처리를 하게 됩니다.
즉 sigprocmask() 함수를 통해 블럭된 시그널은 핸들러가 리턴 되는 순간 언블럭 되는데 이 부분을 이해 할 수가 없군요

sigprocmask( SIG_UNBLOCK, ... ) 이런 문구를 코드 어느 부분이든 넣어야 동작하지 않을까 하고 생각했는데 제 오산이더군요...

정리하면, 핸들러가 리턴 되는 순간 sigprocmask()로 블럭 됐던 시그널들이 전부 언블럭 되는데 이와 관련된 언블럭 동작 조건( 혹시 핸들러 동작중 변경된 시그널 설정은 핸들러 리턴과 동시에 원상 복귀 되는지? )이 궁금합니다.

beggarstar의 이미지

In any case, when the handler returns, the system restores the mask that was in place before the handler was entered.

댓글 달기

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