As per subject, if in C/C++ is easy to find cache line size and deal with this issue whilst developing efficient MT code, how does Java VM deal with this?
Cheers
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Generally it doesn’t. You have to work this out for yourself. If it really matters you may have to use JNI to get low level details about the system.
Java on the other hand makes writing MT application easy by supporting it in the language from the start.