Work on Authentication System(s)
[matches/MCTX3420.git] / server / common.h
1 /**
2  * @file common.h
3  * @brief Common header includes
4  */
5
6 #ifndef _COMMON_H
7 #define _COMMON_H
8
9 /** Defines required to allow various C standard functions to be used **/
10 #define _POSIX_C_SOURCE 200809L
11 #define _BSD_SOURCE
12 #define _XOPEN_SOURCE 600
13
14 /** Determine if we're running on the BBB **/
15 #ifdef __arm__
16         #define _BBB
17 #else
18         //#warning This software was designed for the BeagleBone Black. Some features may not work.
19 #endif //__arm__
20
21 /** The current API version **/
22 #define API_VERSION 0
23
24
25
26
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <stdbool.h>
30 #include <string.h>
31 #include <errno.h>
32 #include <pthread.h>
33 #include <unistd.h>
34 #include <assert.h>
35 #include <sys/time.h>
36 #include <time.h>
37
38 #include "log.h"
39 #include "fastcgi.h"
40 #include "control.h"
41
42 /**Converts a timeval to a double**/
43 #define TIMEVAL_TO_DOUBLE(tv) ((tv).tv_sec + 1e-6 * ((tv).tv_usec))
44 /**Takes the tv1-tv2 between two timevals and returns the result as a double*/
45 #define TIMEVAL_DIFF(tv1, tv2) ((tv1).tv_sec - (tv2).tv_sec + 1e-6 * ((tv1).tv_usec - (tv2).tv_usec))
46
47
48 extern bool PathExists(const char * path);
49
50
51
52
53 #endif //_COMMON_H

UCC git Repository :: git.ucc.asn.au