alarm(), select() , sleep() , SIGALRM

puresupe의 이미지

안녕하세요.

제목에 나열해놓은 것을 최근에 사용할기회가 있었는데.. select()와 SIGALRM 시그널의 어떤 관계가 있는것같아서

KLDP의 몇몇 쓰레드를 찾아보았씁니다.

http://kldp.org/node/28056

에 의하면. select()는 SIGALRM을 이용한다고 어떤분이 글을 올리셨구요..

또다른 스레드나.. APUE 에서보면 sleep()함수는 SIGALRM을 사용한다고 적혀있습니다.

select,sleep,alarm함수 모두가 SIGALRM을 사용하는것인지 궁금합니다. 만약 그렇다면 이것들끼리는 섞어 쓰면 안되겠군요.

  1 #include <stdio.h>
  2 #include <sys/time.h>
  3 #include <signal.h>
  4 
  5 
  6 void handler(int signo)
  7 {
  8     if(signo == SIGALRM)
  9         printf("SIGALRM!!!!!!\n");
 10 }
 11 
 12 int main(void)
 13 {   
 14     struct timeval tv;
 15     signal(SIGALRM,handler);
 16     while(1){
 17     alarm(1);
 18     tv.tv_sec = 1;
 19     tv.tv_usec = 0;
 20     select(0,NULL,NULL,NULL,&tv);
 21     printf("while loop\n");
 22     }
 23     return 0;
 24 }   

간단한 프로그램을 보면...
1초마다 뜨는 while loop라는 문구 틈틈히 "SIGALRM!!!"문구가 불규칙하게
뜨는 이유도 궁금합니다.

bushi의 이미지

    alarm(1);
    tv.tv_sec = 1;
    tv.tv_usec = 0;
    int ret = select(0,NULL,NULL,NULL,&tv);
    if (ret == 0) {
      printf("time-out\n");
    }
    if (ret < 0) {
      perror("");
    }

#if 0
    alarm(1);
    int ret = select(0,NULL,NULL,NULL,NULL);
#else
    tv.tv_sec = 1;
    tv.tv_usec = 0;
    int ret = select(0,NULL,NULL,NULL,&tv);
#endif
 
    if (ret == 0) {
      printf("time-out\n");
    }
    if (ret < 0) {
      perror("");
    }

    signal(SIGALRM,handler); 
 
    sigset_t sig;
    sigemptyset(&sig);
    sigaddset(&sig, SIGALRM); // mask
 
    while(1){
#if 1
      alarm(1);
      int ret = pselect(0,NULL,NULL,NULL,NULL, &sig);
#else
      struct timespec ts;
      ts.tv_sec = 1;
      ts.tv_nsec = 0;
      int ret = pselect(0,NULL,NULL,NULL,&ts, &sig);
#endif
 
      if (ret == 0) {
        printf("time-out\n");
      }
      if (ret < 0) {
        perror("");
      }
 
      printf("while loop\n");
    }

POSIX 구버전 async-signal-safe 목록은
http://www.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_04.html
최근에 fork() 가 빠졌는데... 웹에선 최신 리스트를 잘 못찾겠네요.

OTL

댓글 달기

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