Skip to content

Commit

Permalink
Merge pull request #7386 from LinHu2016/livecontinuationInVerbosegc
Browse files Browse the repository at this point in the history
New element is added in vgc:mem-info
  • Loading branch information
babsingh authored Jun 21, 2024
2 parents 9871e05 + 32aabf4 commit 5d2a72e
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 5d2a72e

Please sign in to comment.