[질문]메시지 큐와 시그널

b79jini의 이미지

메시지 큐를 이용해 두 프로세스간에 통신 프로그램을 만들고 있습니다.

A 프로세스에서 MsgQ를 만들고 이 MsgQ에 Data를 넣어두면 B 프로세스에서 이를 읽어와서 출력 처리 해주고 또 MsgQ에 Data가 들어오기를 기다리고 있습니다.

이때 B 프로세스에 SIGALRM Handler를 이용해 Alarm 신호가 발생하면 MsgQ 대기 상태를 빠려나와 다른 작업을 수행하려고 합니다.

그런데 메시지 큐에서 빠져 나오지 않네요 어떻게 해야 하나요???
시그널이 발생하면 Hander가 작동하는것 까지 확인했는데 그 다음 단계로 넘어가지 않고 계속 메시지 큐에 Data가 들어오는것을 기다리고 있더라구요

좋은 의견 부탁드립니다.

stoneshim의 이미지

block 된 상태가 msgflg에 IPC_NOWAIT를 주지 않고 msgrcv() 에서 걸려있는 건가요?

그렇다면 이 상태에서 signal이 발생할 때 msgrcv() 가 -1 return 하고, errno== EINTR 이 될겁니다.
sigalrm_handler에서 SIGALRM이 발생했음을 확인하고, msgrcv의 return값과 errno값으로 체크해서 맞다면 다른 작업을 실행하고 다시 main loop으로 돌아오시면 되겠습니다.

우리 모두 리얼리스트가 되자. 그러나 가슴에 이룰 수 없는 꿈을 가지자

xfmulder의 이미지

stoneshim wrote:
block 된 상태가 msgflg에 IPC_NOWAIT를 주지 않고 msgrcv() 에서 걸려있는 건가요?

IPC_NOWAIT 를 주면 읽을 데이타가 없을때 즉각 리턴해 버릴테니까
IPC_NOWAIT 를 주지 말고 msgrcv() 해야 합니다.

대략 이런 코드가 되겠지요.

void do_sig_alrm(int signo)
{
     signal(signo,SIG_IGN);
      /* 할 일 한다 */

     signal(signo,do_sig_alrm);
      return ;
}

int main()
{
signal(SIGALRM, do_sig_alrm ) ;
while(1) {
     alarm(10);
     rtn = msgrcv(qid,,,,0);
     alarm(0);
     if(rtn < 0) {
         if (errno == EINTR ) continue ;  /* SIGALRM 을 처리하고 여기로 왔음 */
    }

}

내 자식들도 나처럼 !!

댓글 달기

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