关于Linux常用函数alarm的范例调试。。。

以下程序(Linux常用函数alarm),在WindowsXP的Code::Blocks下,使用默认的GNU GCC编译器,编译不能通过:

#include <stdio.h>
#include <signal.h>
#include <unistd.h>

void handler() {
 printf("hello\n");
}

int main()
{
 int i;
 signal(SIGALRM,handler);
 alarm(5);

 for(i=1;i<7;i++) {
  printf("sleep %d ...\n",i);
  sleep(1);
 }
}

 

总是提示:

F:\C\Linux_C\alarm.c||In function 'main':|
F:\C\Linux_C\alarm.c|12|error: 'SIGALRM' undeclared (first use in this function)|
F:\C\Linux_C\alarm.c|12|error: (Each undeclared identifier is reported only once|
F:\C\Linux_C\alarm.c|12|error: for each function it appears in.)|
||=== 已完成构建: 3 个错误, 0 个警告 ===|

是不是没有正确引用signal.h头文件啊?

 

你可能感兴趣的:(c,linux,function,gcc,each,编译器)