[kaffe] CVS kaffe (robilad): JVMPI compilation fixlet

Kaffe CVS cvs-commits at kaffe.org
Sun May 29 17:20:16 PDT 2005


PatchSet 6589 
Date: 2005/05/30 00:14:13
Author: robilad
Branch: HEAD
Tag: (none) 
Log:
JVMPI compilation fixlet

Members: 
	ChangeLog:1.4115->1.4116 
	kaffe/kaffevm/kaffe-gc/gc-incremental.c:1.29->1.30 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.4115 kaffe/ChangeLog:1.4116
--- kaffe/ChangeLog:1.4115	Mon May 30 00:03:50 2005
+++ kaffe/ChangeLog	Mon May 30 00:14:13 2005
@@ -1,5 +1,10 @@
 2005-05-30  Dalibor Topic  <robilad at kaffe.org>
 
+	* kaffe/kaffevm/kaffe-gc/gc-incremental.c:
+	Fixed compile problems with JVMPI.
+
+2005-05-30  Dalibor Topic  <robilad at kaffe.org>
+
 	* libraries/javalib/javax/swing/plaf/basic/BasicFileChooserUI.java: 
 	(installComponents) Use a BorderLayout for the filechooser.
 
Index: kaffe/kaffe/kaffevm/kaffe-gc/gc-incremental.c
diff -u kaffe/kaffe/kaffevm/kaffe-gc/gc-incremental.c:1.29 kaffe/kaffe/kaffevm/kaffe-gc/gc-incremental.c:1.30
--- kaffe/kaffe/kaffevm/kaffe-gc/gc-incremental.c:1.29	Sat May  7 16:20:12 2005
+++ kaffe/kaffe/kaffevm/kaffe-gc/gc-incremental.c	Mon May 30 00:14:18 2005
@@ -682,11 +682,11 @@
 	gcStats.markedmem = 0;
 
 #if defined(ENABLE_JVMPI)
-	if( JVMPI_EVENT_ISENABLED(JVMPI_EVENT_KGC_START) )
+	if( JVMPI_EVENT_ISENABLED(JVMPI_EVENT_GC_START) )
 	{
 		JVMPI_Event ev;
 
-		ev.event_type = JVMPI_EVENT_KGC_START;
+		ev.event_type = JVMPI_EVENT_GC_START;
 		jvmpiPostEvent(&ev);
 	}
 #endif
@@ -828,11 +828,11 @@
 	}
 
 #if defined(ENABLE_JVMPI)
-	if( JVMPI_EVENT_ISENABLED(JVMPI_EVENT_KGC_FINISH) )
+	if( JVMPI_EVENT_ISENABLED(JVMPI_EVENT_GC_FINISH) )
 	{ 
 		JVMPI_Event ev;
 
-		ev.event_type = JVMPI_EVENT_KGC_FINISH;
+		ev.event_type = JVMPI_EVENT_GC_FINISH;
 		ev.u.gc_info.used_objects = (jlong)gcStats.markedobj;
 		ev.u.gc_info.used_object_space = (jlong)gcStats.markedmem;
 		ev.u.gc_info.total_object_space = (jlong)gcStats.totalmem;




More information about the kaffe mailing list