mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-16 09:04:41 +02:00
8080692: lots of jstack tests failing in pit
Reviewed-by: kvn, vlivanov
This commit is contained in:
parent
7857b953d0
commit
af066eba2e
6 changed files with 73 additions and 23 deletions
|
@ -273,6 +273,9 @@ public:
|
|||
|
||||
bool has_derived_pointer() const PRODUCT_RETURN0;
|
||||
int count() const { return _count; }
|
||||
#ifdef ASSERT
|
||||
int nr_of_bytes() const; // this is an expensive operation, only used in debug builds
|
||||
#endif
|
||||
|
||||
// Printing
|
||||
void print_on(outputStream* st) const;
|
||||
|
@ -346,6 +349,9 @@ class OopMapStream : public StackObj {
|
|||
bool is_done() { if(!_valid_omv) { find_next(); } return !_valid_omv; }
|
||||
void next() { find_next(); }
|
||||
OopMapValue current() { return _omv; }
|
||||
#ifdef ASSERT
|
||||
int stream_position() const { return _stream->position(); }
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue