URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [Thread_Sleep.java] - Rev 830
Go to most recent revision | Compare with Previous | Blame | View Log
// Test that Thread.sleep() works. public class Thread_Sleep { public static void main(String args[]) { try { long start = System.currentTimeMillis(); System.out.println("sleeping"); Thread.sleep(50); long end = System.currentTimeMillis(); if ((end - start) < 50) System.out.println ("failed"); else System.out.println("ok"); } catch (InterruptedException x) { System.out.println("error: Thread interrupted."); } } }
Go to most recent revision | Compare with Previous | Blame | View Log