blob: 0977d3d95bbe1ab4d74d16a62917441abf212d8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <survive.h>
void survivefault( struct SurviveContext * ctx, const char * fault )
{
fprintf( stderr, "Error: %s\n", fault );
exit( -1 );
}
void survivenote( struct SurviveContext * ctx, const char * fault )
{
fprintf( stderr, "Info: %s\n", fault );
}
int main()
{
struct SurviveContext * ctx = survive_init( &survivefault, &survivenote );
if( !ctx )
{
fprintf( stderr, "Fatal. Could not start\n" );
return 1;
}
while(survive_poll(ctx) == 0)
{
//Do stuff.
}
}
|