mirror of
https://github.com/libevent/libevent.git
synced 2025-01-09 00:56:20 +08:00
d10f85dbce
svn:r18
54 lines
863 B
C
54 lines
863 B
C
/*
|
|
* Compile with:
|
|
* cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/queue.h>
|
|
#include <sys/time.h>
|
|
#include <signal.h>
|
|
#include <fcntl.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
|
|
#include <event.h>
|
|
|
|
int called = 0;
|
|
|
|
void
|
|
signal_cb(int fd, short event, void *arg)
|
|
{
|
|
struct event *signal = arg;
|
|
|
|
printf("%s: got signal %d\n", __FUNCTION__, EVENT_SIGNAL(signal));
|
|
|
|
if (called >= 2)
|
|
event_del(signal);
|
|
|
|
called++;
|
|
}
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
struct event signal_int;
|
|
|
|
/* Initalize the event library */
|
|
event_init();
|
|
|
|
/* Initalize one event */
|
|
event_set(&signal_int, SIGINT, EV_SIGNAL|EV_PERSIST, signal_cb,
|
|
&signal_int);
|
|
|
|
event_add(&signal_int, NULL);
|
|
|
|
event_dispatch();
|
|
|
|
return (0);
|
|
}
|
|
|