SIGALRM때문에 인터럽트되는 recvfrom

urmajest의 이미지

안녕하세요.

...
sigaction(SIGALRM, &action_ALRM, &old_action_ALRM);
...
ualarm(....);

while(1)
{
      receivedBytes = recvfrom(sockfd, msg, sizeof(msg), ......;
      .....
}

주기적으로 SIGALRM이 발생해서 적당한 일을 해주고,
recvfrom을 통해 UDP패킷을 받는 프로그램입니다.

그런데 SIGALRM을 받으니 recvfrom이 인터럽트되어서 종료가 되네요.

SIGALRM이 와도 인터럽트당하지 않게 하고 싶은데..

(recvfrom은 반드시 blocking이어야합니다.)

...
sigaction(SIGALRM, &action_ALRM, &old_action_ALRM);
...
ualarm(....);

while(1)
{
      sigprocmask(SIG_BLOCK, ......);
      receivedBytes = recvfrom(sockfd, msg, sizeof(msg), ......;
      sigprocmask(SIG_UNBLOCK, ....);
      .....
}

이런식으로 해주니 의도한대로 되긴합니다만, 아무래도 다른 방법이

있을 것 같네요. 좀 더 예쁘게 처리할 수 있는 방법이 있을까요?

Necromancer의 이미지

errno==EINTR인지 검사해보시기 바랍니다.
아울러 SIGALRM 핸들러도 표식을 남겨야겠죠.

Written By the Black Knight of Destruction

맹고이의 이미지

분리가 가능하다면 주기적으로 SIGALRM이 필요한 부분은
따로 쓰레드를 만들어서 pthread_kill 함수를 이용하고
recvfrom 함수가 있는 쓰레드는 sigprocmask 함수나 pthread_sigmask 함수를
써도 되지 않을까요? 실제로 안해봐서 장담은 못하겠네요.
분리가 안된다면 흑기사님이 말씀하신 것 처럼... :)

saxboy의 이미지

옙... 역시 네트웍프로그램에서 FAQ중의 하나가 아닐까 싶군요. errno==EINTR 검사 제대로 해주지 않으면 별 원인도 없는 듯 생기는 에러에 밤 잠 못자고 디버깅 해야 하는 일이 생기지요. Stevens 아저씨의 네트웍 관련 코드는 한줄도 빼놓지 말고 그대로 카피해서 쓰는 것이 정신건강에 대단히 이롭습니다.

댓글 달기

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