[kaffe] CVS kaffe (dalibor): Fixed small glitch in winthread.c:setpriority

Kaffe CVS cvs-commits at kaffe.org
Thu Oct 23 10:02:02 PDT 2003


PatchSet 4120 
Date: 2003/10/23 16:52:13
Author: dalibor
Branch: HEAD
Tag: (none) 
Log:
Fixed small glitch in winthread.c:setpriority

Members: 
	ChangeLog:1.1712->1.1713 
	kaffe/kaffevm/systems/win32/winthread.c:1.3->1.4 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.1712 kaffe/ChangeLog:1.1713
--- kaffe/ChangeLog:1.1712	Wed Oct 22 15:10:38 2003
+++ kaffe/ChangeLog	Thu Oct 23 16:52:13 2003
@@ -1,3 +1,9 @@
+2003-10-23  Marc Kleine-Budde <kleine-budde at gmx.de>
+
+	* kaffe/kaffevm/systems/win32/winthread.c
+	(jthread_setpriority)
+	added missing break statement in switch-case
+
 2003-10-22  Ito Kazumitsu <kaz at maczuka.gcd.org>
 
 	* libraries/javalib/java/text/DecimalFormat.java:
Index: kaffe/kaffe/kaffevm/systems/win32/winthread.c
diff -u kaffe/kaffe/kaffevm/systems/win32/winthread.c:1.3 kaffe/kaffe/kaffevm/systems/win32/winthread.c:1.4
--- kaffe/kaffe/kaffevm/systems/win32/winthread.c:1.3	Wed Jul 28 01:41:14 1999
+++ kaffe/kaffe/kaffevm/systems/win32/winthread.c	Thu Oct 23 16:52:15 2003
@@ -113,6 +113,7 @@
 		break;
 	case 2:
 		prio = THREAD_PRIORITY_LOWEST;
+		break;
 	case 3:
 	case 4:
 		prio = THREAD_PRIORITY_BELOW_NORMAL;




More information about the kaffe mailing list