-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathegiadapter.h
executable file
·49 lines (35 loc) · 1.3 KB
/
egiadapter.h
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*******************************************************************************
egiadapter.h
*******************************************************************************/
/**
* This file belongs to the SINQ histogram memory code for Linux-RTAI.
* This file contains the interface between the more general SINQ code
* and the EGI interface of the appWeb http server.
*
* Mark Koennecke, Gerd Theidel, September 2005
*/
#ifndef _EGIADAPTER_H_
#define _EGIADAPTER_H_
/*******************************************************************************
includes
*******************************************************************************/
#include "controlshm.h"
#include "datashm.h"
extern "C" {
/*******************************************************************************
function prototypes
*******************************************************************************/
/**
* initialize everything for us
* @return a negative error code on problems, 1 else
*/
int initializeSINQHM(void);
/**
* drop all connections to the shared memory and clean up.
*/
int closeSINQHM(void);
void openLog(char* filename, int size);
void closeLog(void);
/******************************************************************************/
}
#endif //_EGIADAPTER_H_