src/hotspot/os/aix/os_aix.cpp
changeset 58654 562bf1878089
parent 58591 9770ff6f0b20
child 58679 9c3209ff7550
child 59108 6f42d2a19117
equal deleted inserted replaced
58653:71fef5fae9cc 58654:562bf1878089
  1032 jlong os::elapsed_frequency() {
  1032 jlong os::elapsed_frequency() {
  1033   return NANOSECS_PER_SEC; // nanosecond resolution
  1033   return NANOSECS_PER_SEC; // nanosecond resolution
  1034 }
  1034 }
  1035 
  1035 
  1036 bool os::supports_vtime() { return true; }
  1036 bool os::supports_vtime() { return true; }
  1037 bool os::enable_vtime()   { return false; }
       
  1038 bool os::vtime_enabled()  { return false; }
       
  1039 
  1037 
  1040 double os::elapsedVTime() {
  1038 double os::elapsedVTime() {
  1041   struct rusage usage;
  1039   struct rusage usage;
  1042   int retval = getrusage(RUSAGE_THREAD, &usage);
  1040   int retval = getrusage(RUSAGE_THREAD, &usage);
  1043   if (retval == 0) {
  1041   if (retval == 0) {
  3623 void os::set_native_thread_name(const char *name) {
  3621 void os::set_native_thread_name(const char *name) {
  3624   // Not yet implemented.
  3622   // Not yet implemented.
  3625   return;
  3623   return;
  3626 }
  3624 }
  3627 
  3625 
  3628 bool os::distribute_processes(uint length, uint* distribution) {
       
  3629   // Not yet implemented.
       
  3630   return false;
       
  3631 }
       
  3632 
       
  3633 bool os::bind_to_processor(uint processor_id) {
  3626 bool os::bind_to_processor(uint processor_id) {
  3634   // Not yet implemented.
  3627   // Not yet implemented.
  3635   return false;
  3628   return false;
  3636 }
  3629 }
  3637 
  3630