hotspot/src/os/posix/vm/os_posix.cpp
changeset 8476 7e34c2d4cf9b
parent 8119 81eef1b06988
child 11418 66ca80da30e2
--- a/hotspot/src/os/posix/vm/os_posix.cpp	Sat Feb 26 13:33:23 2011 -0500
+++ b/hotspot/src/os/posix/vm/os_posix.cpp	Mon Feb 28 14:19:52 2011 +0100
@@ -59,3 +59,12 @@
   VMError::report_coredump_status(buffer, success);
 }
 
+bool os::is_debugger_attached() {
+  // not implemented
+  return false;
+}
+
+void os::wait_for_keypress_at_exit(void) {
+  // don't do anything on posix platforms
+  return;
+}