当前位置:早雪网网络学院编程文档C/C++ → Linux下C语言编程--信号处理函数

Linux下C语言编程--信号处理函数

减小字体 增大字体 作者:不详  来源:supcode.com收集整理  发布时间:2005-7-22 19:34:00
操作函数,就可以了.sa_handler有两个特殊的值:SIG_DEL和SIG_IGN.SIG_DEL是使用缺省的信号操作函数,而SIG_IGN是使用忽略该信号的操作函数. 
这个函数复杂,我们使用一个实例来说明.下面这个函数可以捕捉用户的CTRL+C信号.并输出一个提示语句. 

#include 
#include 
#include 
#include 
#include 

#define PROMPT "你想终止程序吗?"

char *prompt=PROMPT;

void ctrl_c_op(int signo)
{
write(STDERR_FILENO,prompt,strlen(prompt));
}

int  main()
{
 struct sigaction act;
 
 act.sa_handler=ctrl_c_op;
 sigemptyset(&act.sa_mask);
 act.sa_flags=0;
 if(sigaction(SIGINT,&act,NULL)<0)
  {
    fprintf(stderr,"Install Signal Action Error:%s\n\a",strerror(errno));
    exit(1);
  }
  while(1);
}

在上面程序的信号操作函数之中,我们使用了write函数而没有使用fprintf函数.是因为我们要考虑到下面这种情况.如果我们在信号操作的时候又有一个信号发生,那么程序该如何运行呢? 为了处理在信号处理函数运行的时候信号的发生,我们需要设置sa_mask成员. 我们将我们要屏蔽的信号添加到sa_mask结构当中去,这样这些函数在信号处理的时候就会被屏蔽掉的. 
3。其它信号函数     由于信号的操作和处理比较复杂,我们再介绍几个信号操作函数. 

#include
#include

int pause(void);
int sigsuspend(const sigset_t *sigmask);

pause函数很简单,就是挂起进程直到一个信号发生了.而sigsuspend也是挂起进程只是在调用的时候用sigmask取代当前的信号阻塞集合. 
#include

int sigsetjmp(sigjmp_buf env,int val);
void  siglongjmp(sigjmp_buf env,int val);

还记得goto函数或者是setjmp和longjmp函数吗.这两个信号跳转函数也可以实现程序的跳转让我们可以从函数之中跳转到我们需要的地方. 
由于上面几个函数,我们很少遇到,所以只是说明了一下,详细情况请查看联机帮助. 
4。一个实例     还记得我们在守护进程创建的哪个程序吗?守护进程在这里我们把那个程序加强一下. 下面这个程序会在也可以检查用户的邮件.不过提供了一个开关,如果用户不想程序提示有新的邮件到来,可以向程序发送SIGUSR2信号,如果想程序提供提示可以发送SIGUSR1信号. 


#include 
#include 
#include 
#include 
#include 
#include 
#include 

#include 
#include 

/*  Linux  的默任个人的邮箱地址是 /var/spool/mail/ */

#define  MAIL_DIR   "/var/spool/mail/"

/*      睡眠10秒钟      */
                
#define  SLEEP_TIME     10
#define  MAX_FILENAME 255

unsigned char notifyflag=1;

long get_file_size(const char *filename)
{
  struct stat buf;
 
  if(stat(filename,&;buf)==-1)
   {
if(errno==ENOENT)return 0;
else return -1;
   }
  return (long)buf.st_size;
}

void send_mail_notify(void)
{
  fprintf(stderr,"New mail has arrived\007\n");
}

void turn_on_notify(int signo)
{
notifyflag=1;
}

void turn_off_notify(int signo)
{
notifyflag=0;
}

int check_mail(const char *filename)
{
  long old_mail_size,new_mail_size;
  sigset_t blockset,emptyset;

  sigemptyset(&;blockset);
  sigemptyset(&;emptyset);
  sigaddset(&;blockset,SIGUSR1);
  sigaddset(&;blockset,SIGUSR2);
  
  old_mail_size=get_file_size(filename);
  if(old_mail_size<0)return 1;
  if(old_mail_size>0) send_mail_notify();
  sleep(SLEEP_TIME);
  
  while(1)
  {
if(sigprocmask(SIG_BLOCK,&;blockset,NULL)<0) return 1;
while(notifyflag==0)sigsuspend(&;emptyset);
if(sigprocmask(SIG_SETMASK,&;emptyset,NULL)<0) return 1;
new_mail_size=get_file_size(filename);
if(new_mail_size>old_mail_size)send_mail_notify;
old_mail_size=new_mail_size;
sleep(SLEEP_TIME);
  }
}

int main(void)
{
  char mailfile[MAX_FILENAME];
  struct sigaction newact;
  struct passwd *pw;

  if((pw=getpwuid(getuid()))==NULL)
   {
fprintf(stderr,"Get Login Name Error:%s\n\a",strerror(errno));
exit(1);
   }
  strcpy(mailfile,MAIL_DIR);
  strcat(mailfile,pw->pw_name);
  newact.sa_handler=turn_on_notify;
  newact.sa_flags=0;
  sigemptyset(&;newact.sa_mask);
  sigaddset(&;newact.sa_mask,SIGUSR1);
  sigaddset(&;newact.sa_mask,SIGUSR2);
  if(sigaction(SIGUSR1,&;newact,NULL)<0)
   fprintf(stderr,"Turn On Error:%s\n\a",strerror(errno));
  newact.sa_handler=turn_off_notify;
  if(sigaction(SIGUSR1,&;newact,NULL)<0)
  fprintf(stderr,"Turn Off Error:%s\n\a",strerror(errno));
  check_mail(mailfile);
  exit(0);  
}

信号操作是一件非常复杂的事情,比我们想象之中的复杂程度还要复杂,如果你想彻底的弄清楚信号操作的各个问题,那么除了大量的练习以外还要多看联机手册.不过如果我们只是一般的使用的话,有了上面的几个函数也就差不多了. 我们就介绍到这里了. 
--------------------------------------------------------------------------------

上一页  [1] [2] 

[数据载入中...] [返回上一页] [打 印]