diff options
author | Adam Sandberg Ericsson <adam@sandbergericsson.se> | 2023-03-11 18:54:17 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2023-03-21 11:17:53 -0400 |
commit | 23642bf609a5da928992b4fae9242194f848ff2f (patch) | |
tree | 3ba27315461e7592929ddc973f1e042d8e6eeb24 /docs | |
parent | a13affce1a6196ccff6c126112ab26823c85e727 (diff) | |
download | haskell-23642bf609a5da928992b4fae9242194f848ff2f.tar.gz |
docs: fix some wrongs in the eventlog format documentation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/eventlog-formats.rst | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/docs/users_guide/eventlog-formats.rst b/docs/users_guide/eventlog-formats.rst index 4d7210a8c6..dae6de4a84 100644 --- a/docs/users_guide/eventlog-formats.rst +++ b/docs/users_guide/eventlog-formats.rst @@ -44,7 +44,9 @@ start with the event type id and a 64-bit timestamp: EventLog : EVENT_HEADER_BEGIN + EVENT_HET_BEGIN -- header event types begin EventType* + EVENT_HET_END -- header event types end EVENT_HEADER_END EVENT_DATA_BEGIN Event* @@ -200,7 +202,7 @@ Thread and scheduling events .. event-type:: THREAD_LABEL :tag: 44 - :length: fixed + :length: variable :field ThreadId: thread id :field String: label @@ -332,9 +334,10 @@ in :ref:`nonmoving-gc-events`. :field Word64: bytes of fragmentation, the difference between total mblock size and total block size. When all mblocks are full of full blocks, this number is 0. - :field Word64: number of parallel garbage collection threads + :field Word32: number of parallel garbage collection threads :field Word64: maximum number of bytes copied by any single collector thread :field Word64: total bytes copied by all collector threads + :field Word64: the amount of balanced data copied by all threads Report various information about a major collection. @@ -549,10 +552,10 @@ Tracing events .. event-type:: BLOCK_MARKER :tag: 18 - :length: variable + :length: fixed :field Word32: size :field Word64: end time in nanoseconds - :field String: marker name + :field Word16: capability number TODO |