Update of /cvsroot/javaprofiler/library/src/main
In directory usw-pr-cvs1:/tmp/cvs-serv12893/src/main
Modified Files:
includes.h
Log Message:
unix implementation of shared memory communication
(semaphore, shared memory)
Index: includes.h
===================================================================
RCS file: /cvsroot/javaprofiler/library/src/main/includes.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** includes.h 2001/08/24 17:54:04 1.22
--- includes.h 2001/08/25 23:27:43 1.23
***************
*** 12,15 ****
--- 12,19 ----
#include <unistd.h>
#include <sys/time.h>
+ #include <sys/ipc.h>
+ #include <sys/sem.h>
+ #include <sys/shm.h>
+ #include <netdb.h>
#endif
***************
*** 75,80 ****
#include "../prof/lock.h"
#include "../prof/synchronized.h"
- #include "../commun3/semaphore.h"
- #include "../commun3/sharedMemory.h"
#include "../delay/delay.h"
--- 79,82 ----
***************
*** 88,92 ****
#include "../commun/commun.h"
#include "../commun/communSocket.h"
- #include "../commun3/communShMem.h"
#include "../commun/statDataModification.h"
#include "../commun2/objectTable.h"
--- 90,93 ----
***************
*** 98,101 ****
--- 99,107 ----
#include "../cpu/cpuStatData.h"
#include "../mon/monStatData.h"
+
+ #include "../commun/iprof.h"
+ #include "../commun3/semaphore.h"
+ #include "../commun3/sharedMemory.h"
+ #include "../commun3/communShMem.h"
#include "../cpu/cpuStack.h"
|