aboutsummaryrefslogtreecommitdiff
path: root/include/survive.h
blob: ea762c57af1d06a8d9e764b9256cf8d3976ee372 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _SURVIVE_H
#define _SURVIVE_H

struct SurviveContext;

struct SurviveContext * survive_init( void(*faultfunction)( struct SurviveContext * ctx, const char * fault ) );
void survive_close( struct SurviveContext * ctx );
int survive_poll();

#endif