blob: a8571b7ced82c72e12dd4eb503d05a3345a42b27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Size of shared memory
#define SHMSZ_CHAT 1024
#define SHMSZ_BUGS 1024
#define SHMSZ_DATA 1024
#define SHMSZ_PLAY 1024
//Keys for the shared memory
#define KEY_CHAT_TO 5679
#define KEY_CHAT_FROM 5680
#define KEY_BUGS_TO 5681
#define KEY_BUGS_FROM 5682
#define KEY_DATA_TO 5683
#define KEY_DATA_FROM 5684
#define KEY_PLAY_TO 5685
#define KEY_PLAY_FROM 5686
|