src/hotspot/os/posix/os_posix.cpp
changeset 58654 562bf1878089
parent 58492 227ddf1ff93d
child 58679 9c3209ff7550
child 58744 c9c3bb79861e
equal deleted inserted replaced
58653:71fef5fae9cc 58654:562bf1878089
   165   ::strncpy(buf, s, n);
   165   ::strncpy(buf, s, n);
   166   buf[n] = '\0';
   166   buf[n] = '\0';
   167   return n;
   167   return n;
   168 }
   168 }
   169 
   169 
   170 bool os::is_debugger_attached() {
       
   171   // not implemented
       
   172   return false;
       
   173 }
       
   174 
       
   175 void os::wait_for_keypress_at_exit(void) {
   170 void os::wait_for_keypress_at_exit(void) {
   176   // don't do anything on posix platforms
   171   // don't do anything on posix platforms
   177   return;
   172   return;
   178 }
   173 }
   179 
   174