ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumwith_gc
Last change
on this file since 9997fee was
6aa537a4,
checked in by Thierry Delisle <tdelisle@…>, 7 years ago
|
Added java benchmarks
|
-
Property mode set to
100644
|
File size:
347 bytes
|
Line | |
---|
1 | public class JavaThread { |
---|
2 | public synchronized void noop() {} |
---|
3 | |
---|
4 | public static void main(String[] args) { |
---|
5 | int NoOfTimes = 5000000; |
---|
6 | JavaThread j = new JavaThread(); |
---|
7 | long start = System.nanoTime(); |
---|
8 | for(int i = 1; i <= NoOfTimes; i += 1) { |
---|
9 | j.noop(); |
---|
10 | } |
---|
11 | long end = System.nanoTime(); |
---|
12 | System.out.println( (end - start) / NoOfTimes); |
---|
13 | } |
---|
14 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.