adding a test case
[IRC.git] / Robust / src / Runtime / DSTM / interface / addUdpEnhance.h
1 #ifndef _ADDUDPENHANCE_H
2 #define _ADDUDPENHANCE_H
3
4 #include "dstm.h"
5 #include "altmlookup.h"
6
7
8 /*******************************
9  * Udp Message structures
10  ******************************/
11 #define INVALIDATE_OBJS 101
12
13 /*************************
14  * Global constants
15  ************************/
16 #define MAX_SIZE  2000
17
18 /********************************
19  *  Function Prototypes
20  *******************************/
21 int createUdpSocket();
22 int udpInit();
23 void *udpListenBroadcast(void *);
24 int invalidateObj(trans_req_data_t *, int, char, int*);
25 int invalidateFromPrefetchCache(char *);
26 int sendUdpMsg(trans_req_data_t *, int, int, struct sockaddr_in *, char, int*);
27 #endif