forked from plrectco/GossipMembership
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stdincludes.h
45 lines (39 loc) · 843 Bytes
/
stdincludes.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
/**********************************
* FILE NAME: stdincludes.h
*
* DESCRIPTION: standard header file
**********************************/
#ifndef _STDINCLUDES_H_
#define _STDINCLUDES_H_
/*
* Macros
*/
#define RING_SIZE 512
#define FAILURE -1
#define SUCCESS 0
/*
* Standard Header files
*/
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <time.h>
#include <stdarg.h>
#include <unistd.h>
#include <fcntl.h>
#include <execinfo.h>
#include <signal.h>
#include <iostream>
#include <vector>
#include <map>
#include <string>
#include <algorithm>
#include <queue>
#include <fstream>
using namespace std;
#define STDCLLBKARGS (void *env, char *data, int size)
#define STDCLLBKRET void
#define DEBUGLOG 1
#endif /* _STDINCLUDES_H_ */