diff options
author | Takenobu Tani <takenobu.hs@gmail.com> | 2019-10-27 17:16:35 +0900 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-10-29 03:45:41 -0400 |
commit | 35abbfee8b4298ef7352a3c2341595c774a7244b (patch) | |
tree | 641356fc71ac7d4612b35e5cc6da4756a2972f97 /docs/users_guide/eventlog-formats.rst | |
parent | fb4f245cf5f38cf22fc8a3f81505b79acdba4ea5 (diff) | |
download | haskell-35abbfee8b4298ef7352a3c2341595c774a7244b.tar.gz |
users-guide: Add some new features and fix warnings for GHC 8.10
This updates the following:
* Add description for ImportQualifiedPost extension
* Add description for ghci command name resolution
* Fix markdown warnings
[skip ci]
Diffstat (limited to 'docs/users_guide/eventlog-formats.rst')
-rw-r--r-- | docs/users_guide/eventlog-formats.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/users_guide/eventlog-formats.rst b/docs/users_guide/eventlog-formats.rst index a3ed47fc3c..2f418b836a 100644 --- a/docs/users_guide/eventlog-formats.rst +++ b/docs/users_guide/eventlog-formats.rst @@ -146,7 +146,7 @@ on each tick the current cost centre stack is emitted. Together these enable a user to construct an approximate track of the executation of their program. Profile begin event -^^^^^^^^^^^^^^^^^^^ +~~~~~~~~~~~~~~~~~~~ * ``EVENT_PROF_BEGIN`` @@ -154,13 +154,13 @@ Profile begin event Tick sample event -^^^^^^^^^^^^^^^^^^ +~~~~~~~~~~~~~~~~~ A variable-length packet encoding a profile sample. -* ``EVENT_PROF_SAMPLE_COST_CENTRE`` + * ``EVENT_PROF_SAMPLE_COST_CENTRE`` - * ``Word32``: Capability - * ``Word64``: Current profiling tick - * ``Word8``: stack depth - * ``Word32[]``: cost centre stack starting with inner-most (cost centre numbers) + * ``Word32``: Capability + * ``Word64``: Current profiling tick + * ``Word8``: stack depth + * ``Word32[]``: cost centre stack starting with inner-most (cost centre numbers) |