mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8223626: move print() functions to cpp files
Improve debugging experience Reviewed-by: dholmes, dlong
This commit is contained in:
parent
c90f3ee68b
commit
77d60eff6a
44 changed files with 100 additions and 45 deletions
|
@ -732,7 +732,7 @@ protected:
|
|||
// Printing
|
||||
void print_on(outputStream* st, bool print_extended_info) const;
|
||||
virtual void print_on(outputStream* st) const { print_on(st, false); }
|
||||
void print() const { print_on(tty); }
|
||||
void print() const;
|
||||
virtual void print_on_error(outputStream* st, char* buf, int buflen) const;
|
||||
void print_value_on(outputStream* st) const;
|
||||
|
||||
|
@ -1874,6 +1874,7 @@ class JavaThread: public Thread {
|
|||
char* name() const { return (char*)get_thread_name(); }
|
||||
void print_on(outputStream* st, bool print_extended_info) const;
|
||||
void print_on(outputStream* st) const { print_on(st, false); }
|
||||
void print() const;
|
||||
void print_value();
|
||||
void print_thread_state_on(outputStream*) const PRODUCT_RETURN;
|
||||
void print_thread_state() const PRODUCT_RETURN;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue