From: Marek P. <ma...@us...> - 2002-01-27 14:33:30
|
Update of /cvsroot/javaprofiler/library/src/main In directory usw-pr-cvs1:/tmp/cvs-serv20943/src/main Modified Files: includes.h Log Message: solaris port of communication interface finished shared memory communication fixed Index: includes.h =================================================================== RCS file: /cvsroot/javaprofiler/library/src/main/includes.h,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -r1.27 -r1.28 *** includes.h 2001/11/25 22:33:47 1.27 --- includes.h 2002/01/27 14:33:24 1.28 *************** *** 43,50 **** #include <iostream.h> #else ! #ifdef SUNOS ! // SUNOS headers ! #else ! // LINUX headers #include <sys/types.h> #include <netinet/in.h> --- 43,47 ---- #include <iostream.h> #else ! // LINUX and SUNOS headers #include <sys/types.h> #include <netinet/in.h> *************** *** 52,60 **** #include <unistd.h> #include <netdb.h> - #include <stdlib.h> #include <sys/ipc.h> #include <sys/sem.h> #include <sys/shm.h> - #include <sys/time.h> #include <string.h> #include <iostream.h> --- 49,55 ---- *************** *** 66,70 **** #endif - #endif #endif --- 61,64 ---- |