码迷,mamicode.com
首页 > 系统相关 > 详细

linux 信号

时间:2016-06-10 08:26:51      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

#include <stdlib.h> 
#include <stdio.h> 
#include <errno.h> 
#include <string.h> 
#include <iostream>
#include <unistd.h>
#include <signal.h>

using namespace std;

typedef void (*sighandler_t)(int);
void handler( int sig )
{
    cout << "sig = " << sig << endl;
}

int main(int argc, char *argv[]) 
{ 
    sighandler_t oldHandler = signal(SIGINT, handler);

    if ( oldHandler == SIG_ERR ) exit(1);
    
    sleep(1);

    if ( signal(SIGINT, oldHandler) == SIG_ERR ) exit(1);

    sleep(10);  
    return 0;
}

  

linux 信号

标签:

原文地址:http://www.cnblogs.com/kaishan1990/p/5573129.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!