Skip to content

Commit

Permalink
New element is added in vgc:mem-info
Browse files Browse the repository at this point in the history
new element "vgc:continuation-objects" is added in vgc:mem-info,
the element with two integer addributes "total" and "started"

Signed-off-by: hulin <linhu@ca.ibm.com>
  • Loading branch information
LinHu2016 committed Jun 19, 2024
1 parent 59032a8 commit 32aabf4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions gc/verbose/schema.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ xmlns:vgc="http://www.ibm.com/j9/verbosegc">
<element name="gc-op" type="vgc:gc-op" />
<element name="references" type="vgc:references" />
<element name="pending-finalizers" type="vgc:pending-finalizers" />
<element name="continuation-objects" type="vgc:continuation-objects" />
<element name="trace-info" type="vgc:trace-info" />
<element name="cardclean-info" type="vgc:cardclean-info" />
<element name="finalization" type="vgc:finalization" />
Expand Down Expand Up @@ -174,6 +175,7 @@ xmlns:vgc="http://www.ibm.com/j9/verbosegc">
<element ref="vgc:arraylet-unknown" maxOccurs="1" minOccurs="0" />
<element ref="vgc:numa" maxOccurs="1" minOccurs="0" />
<element ref="vgc:pending-finalizers" maxOccurs="1" minOccurs="0" />
<element ref="vgc:continuation-objects" maxOccurs="1" minOccurs="0" />
<element ref="vgc:remembered-set" maxOccurs="1" minOccurs="0" />
</sequence>
<attribute name="id" type="integer" use="required" />
Expand Down Expand Up @@ -452,6 +454,11 @@ xmlns:vgc="http://www.ibm.com/j9/verbosegc">
<attribute name="classloader" type="integer" use="required" />
</complexType>

<complexType name="continuation-objects">
<attribute name="total" type="integer" use="required" />
<attribute name="started" type="integer" use="required" />
</complexType>

<complexType name="trace-info">
<attribute name="objectcount" type="integer" use="required" />
<attribute name="scancount" type="integer" use="required" />
Expand Down

0 comments on commit 32aabf4

Please sign in to comment.