[kaffe] CVS kaffe (robilad): Resynced with GNU Classpath: libclasspath fix
Kaffe CVS
cvs-commits at kaffe.org
Thu Feb 10 15:18:35 PST 2005
PatchSet 5516
Date: 2005/02/10 23:07:51
Author: robilad
Branch: HEAD
Tag: (none)
Log:
Resynced with GNU Classpath: libclasspath fix
2005-02-10 Dalibor Topic <robilad at kaffe.org>
Resynced with GNU Classpath.
2005-02-07 Craig Black <craig.black at aonix.com>
* native/jni/classpath/native_state.c
(add_node): Update head pointer when moving node to front of list.
Members:
ChangeLog:1.3560->1.3561
libraries/clib/classpath/native_state.c:1.1->1.2
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3560 kaffe/ChangeLog:1.3561
--- kaffe/ChangeLog:1.3560 Thu Feb 10 23:03:53 2005
+++ kaffe/ChangeLog Thu Feb 10 23:07:51 2005
@@ -2,6 +2,15 @@
Resynced with GNU Classpath.
+ 2005-02-07 Craig Black <craig.black at aonix.com>
+
+ * native/jni/classpath/native_state.c
+ (add_node): Update head pointer when moving node to front of list.
+
+2005-02-10 Dalibor Topic <robilad at kaffe.org>
+
+ Resynced with GNU Classpath.
+
2005-02-06 Mark Wielaard <mark at klomp.org>
Reported by Timo Lindfors <timo.lindfors at iki.fi>
Index: kaffe/libraries/clib/classpath/native_state.c
diff -u kaffe/libraries/clib/classpath/native_state.c:1.1 kaffe/libraries/clib/classpath/native_state.c:1.2
--- kaffe/libraries/clib/classpath/native_state.c:1.1 Wed Dec 1 02:41:53 2004
+++ kaffe/libraries/clib/classpath/native_state.c Thu Feb 10 23:07:58 2005
@@ -151,6 +151,7 @@
{
back_ptr->next = node->next;
node->next = *head;
+ *head = node;
}
node->c_state = state;
return;
More information about the kaffe
mailing list