From: Marek P. <ma...@us...> - 2001-08-23 23:57:34
|
Update of /cvsroot/javaprofiler/library/src In directory usw-pr-cvs1:/tmp/cvs-serv1062/src Modified Files: Makefile.rules dir.info Log Message: shared memory implementation; java client and dynamic library can now communicate thru sockets or shmem; main README completely rewritten; new classes - for shared memory, semaphores etc.; java native class CommunShMem implementation Index: Makefile.rules =================================================================== RCS file: /cvsroot/javaprofiler/library/src/Makefile.rules,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Makefile.rules 2001/08/09 23:22:55 1.6 --- Makefile.rules 2001/08/23 23:57:31 1.7 *************** *** 95,98 **** --- 95,114 ---- $(MAKE) $(MFLAGS) cpu clean + delay.dir: + cd delay + $(MAKE) $(MFLAGS) + cd .. + + delay.dir.2: + $(MAKE) $(MFLAGS) delay + + delay.clean: + cd delay + $(MAKE) $(MFLAGS) clean + cd .. + + delay.clean.2: + $(MAKE) $(MFLAGS) delay clean + gc.dir: cd gc Index: dir.info =================================================================== RCS file: /cvsroot/javaprofiler/library/src/dir.info,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** dir.info 2001/08/09 23:22:55 1.11 --- dir.info 2001/08/23 23:57:31 1.12 *************** *** 1,3 **** ! DIRS = profiler alloc allocator commun commun2 commun3 cpu gc main \ prof setup shared string --- 1,3 ---- ! DIRS = profiler alloc allocator commun commun2 commun3 cpu delay gc main \ prof setup shared string *************** *** 5,8 **** OBJ_FILES = profiler/*.o* alloc/*.o* allocator/*.o* commun/*.o* commun2/*.o* \ ! commun3/*.o* cpu/*.o* gc/*.o* main/*.o* prof/*.o* setup/*.o* \ ! shared/*.o* string/*.o* --- 5,8 ---- OBJ_FILES = profiler/*.o* alloc/*.o* allocator/*.o* commun/*.o* commun2/*.o* \ ! commun3/*.o* cpu/*.o* delay/*.o* gc/*.o* main/*.o* prof/*.o* \ ! setup/*.o* shared/*.o* string/*.o* |