comparison src/share/vm/runtime/os.hpp @ 2304:23ae54207126

Merge
author rottenha
date Mon, 28 Feb 2011 15:35:45 -0800
parents 850b2295a494 da091bb67459
children 677234770800
comparison
equal deleted inserted replaced
2271:658d198b2e04 2304:23ae54207126
490 static void print_date_and_time(outputStream* st); 490 static void print_date_and_time(outputStream* st);
491 491
492 static void print_location(outputStream* st, intptr_t x, bool verbose = false); 492 static void print_location(outputStream* st, intptr_t x, bool verbose = false);
493 static size_t lasterror(char *buf, size_t len); 493 static size_t lasterror(char *buf, size_t len);
494 494
495 // Determines whether the calling process is being debugged by a user-mode debugger.
496 static bool is_debugger_attached();
497
498 // wait for a key press if PauseAtExit is set
499 static void wait_for_keypress_at_exit(void);
500
495 // The following two functions are used by fatal error handler to trace 501 // The following two functions are used by fatal error handler to trace
496 // native (C) frames. They are not part of frame.hpp/frame.cpp because 502 // native (C) frames. They are not part of frame.hpp/frame.cpp because
497 // frame.hpp/cpp assume thread is JavaThread, and also because different 503 // frame.hpp/cpp assume thread is JavaThread, and also because different
498 // OS/compiler may have different convention or provide different API to 504 // OS/compiler may have different convention or provide different API to
499 // walk C frames. 505 // walk C frames.