Author: j16sdiz
Date: 2009-04-03 08:58:08 +0000 (Fri, 03 Apr 2009)
New Revision: 26413

Modified:
   trunk/freenet/src/freenet/support/io/NativeThread.java
Log:
Allow dontCheckRenice /w ThreadGroup

Modified: trunk/freenet/src/freenet/support/io/NativeThread.java
===================================================================
--- trunk/freenet/src/freenet/support/io/NativeThread.java      2009-04-03 
06:45:32 UTC (rev 26412)
+++ trunk/freenet/src/freenet/support/io/NativeThread.java      2009-04-03 
08:58:08 UTC (rev 26413)
@@ -75,9 +75,10 @@
                this.dontCheckRenice = dontCheckRenice;
        }
        
-       public NativeThread(ThreadGroup g, Runnable r, String name, int 
priority) {
+       public NativeThread(ThreadGroup g, Runnable r, String name, int 
priority, boolean dontCheckRenice) {
                super(g, r, name);
                this.currentPriority = priority;
+               this.dontCheckRenice = dontCheckRenice;
        }
 
        /**

_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to