src/hotspot/os/bsd/os_bsd.cpp
changeset 58654 562bf1878089
parent 58548 430b9a492a05
child 58679 9c3209ff7550
child 59016 3b9eeae66fa0
equal deleted inserted replaced
58653:71fef5fae9cc 58654:562bf1878089
   875 jlong os::elapsed_frequency() {
   875 jlong os::elapsed_frequency() {
   876   return NANOSECS_PER_SEC; // nanosecond resolution
   876   return NANOSECS_PER_SEC; // nanosecond resolution
   877 }
   877 }
   878 
   878 
   879 bool os::supports_vtime() { return true; }
   879 bool os::supports_vtime() { return true; }
   880 bool os::enable_vtime()   { return false; }
       
   881 bool os::vtime_enabled()  { return false; }
       
   882 
   880 
   883 double os::elapsedVTime() {
   881 double os::elapsedVTime() {
   884   // better than nothing, but not much
   882   // better than nothing, but not much
   885   return elapsedTime();
   883   return elapsedTime();
   886 }
   884 }
  3280     pthread_setname_np(buf);
  3278     pthread_setname_np(buf);
  3281   }
  3279   }
  3282 #endif
  3280 #endif
  3283 }
  3281 }
  3284 
  3282 
  3285 bool os::distribute_processes(uint length, uint* distribution) {
       
  3286   // Not yet implemented.
       
  3287   return false;
       
  3288 }
       
  3289 
       
  3290 bool os::bind_to_processor(uint processor_id) {
  3283 bool os::bind_to_processor(uint processor_id) {
  3291   // Not yet implemented.
  3284   // Not yet implemented.
  3292   return false;
  3285   return false;
  3293 }
  3286 }
  3294 
  3287