mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
Reviewed-by: dholmes, hseigel
This commit is contained in:
parent
e98c176026
commit
9c0720b156
61 changed files with 129 additions and 129 deletions
|
@ -185,7 +185,7 @@ class ClassLoaderData : public CHeapObj<mtClass> {
|
|||
volatile juint _size;
|
||||
Chunk* _next;
|
||||
|
||||
Chunk(Chunk* c) : _next(c), _size(0) { }
|
||||
Chunk(Chunk* c) : _size(0), _next(c) { }
|
||||
};
|
||||
|
||||
Chunk* volatile _head;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue