swap thread startup order on fpga server
authoradam <adam@megacz.com>
Mon, 12 Feb 2007 11:23:39 +0000 (12:23 +0100)
committeradam <adam@megacz.com>
Mon, 12 Feb 2007 11:23:39 +0000 (12:23 +0100)
src/edu/berkeley/fleet/slipway/Server.java

index 8a9b604..c30b23c 100644 (file)
@@ -9,10 +9,10 @@ public class Server {
     public static ServerSocket ss;
     public static void main(String[] args) throws Exception {
         ss = new ServerSocket(3133);
-        new Listener(1).start();
-        new Listener(2).start();
         new Listener(3).start();
         new Listener(4).start();
+        new Listener(1).start();
+        new Listener(2).start();
     }
 
     public static String pass_string = "password=security_is_for_wimps ";