comparison src/os/posix/vm/os_posix.cpp @ 2302:da091bb67459

7022037: Pause when exiting if debugger is attached on windows Reviewed-by: dsamersoff, kamg, hosterda
author sla
date Mon, 28 Feb 2011 14:19:52 +0100
parents 63d374c54045
children b16494a69d3d
comparison
equal deleted inserted replaced
2301:f91db74a6810 2302:da091bb67459
57 } 57 }
58 } 58 }
59 VMError::report_coredump_status(buffer, success); 59 VMError::report_coredump_status(buffer, success);
60 } 60 }
61 61
62 bool os::is_debugger_attached() {
63 // not implemented
64 return false;
65 }
66
67 void os::wait_for_keypress_at_exit(void) {
68 // don't do anything on posix platforms
69 return;
70 }