]> git.llucax.com Git - z.facultad/75.59/filosofos.git/blobdiff - src/filosofos3.java
documentacion del primero
[z.facultad/75.59/filosofos.git] / src / filosofos3.java
index 5d35874d1b498596814998d62fe9c4d5f82606ee..68299de4249c2c6ff71f44d56c2a0348184e3855 100644 (file)
@@ -80,7 +80,7 @@ class Filosofo extends Thread
                System.out.println ("Soy " + id + " y estoy comiendo por " + (new Integer(n)).toString ());
                comidas_actuales++;
                try {
-                       Thread.sleep (n);
+                       Thread.sleep (n*1000);
                } catch (Exception e) {}
                finally {}
        }
@@ -90,7 +90,7 @@ class Filosofo extends Thread
                int n = r.nextInt (5) + r.nextInt (2);
                System.out.println ("Soy " + id + " y estoy pensando por " + (new Integer(n)).toString ());
                try {
-                       Thread.sleep (n);
+                       Thread.sleep (n*1000);
                } catch (Exception e) {}
                finally {}
        }