At first I want to let you know that this question is not related with What is native implementation in Java. I got many useful information from that thread.

I want to know that are the codes of the native implementations available? I have jdk source code but I can not find the native codes for System.currentTimeMillis or Runtime.getRuntime().availableProcessors() or other native method.

Thanks and regards.

link|improve this question

1  
You can download the source for the entire OpenJDK and have it open as another project if you have the memory (At least I do. ;) – Peter Lawrey Jun 28 '11 at 9:20
@Peter Lawrey are you referring download.java.net/openjdk/jdk6 ? – Tapas Bose Jun 28 '11 at 9:26
1  
Yes the bundle is 4 months old and you can also download the latest from source control but its unlikely to matter. – Peter Lawrey Jun 28 '11 at 9:38
feedback

1 Answer

up vote 5 down vote accepted

Yes, see os::javaTimeMillis in /src/os/solaris/vm/os_solaris.cpp to see the Solaris implementation for instance. There are a few layers of wrappers to get there though, see JVM_CurrentTimeMillis in /src/share/vm/prims/jvm.cpp

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.