1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-07-14 11:04:22 +01:00

doc/revent: fix event field descriptions

Fix the field descriptions for replay event to reflect the correct
signedness and size.

(note: the layout diagrams were already correct, just the textual
descriptions needed to be adjusted)
This commit is contained in:
Sergei Trofimov
2018-02-21 08:52:18 +00:00
committed by setrofim
parent 12a33c8aeb
commit 87667cd161

@ -459,12 +459,12 @@ Event structure
Each event entry structured as follows: Each event entry structured as follows:
* An unsigned integer representing which device from the list of device paths * An unsigned short integer representing which device from the list of device paths
this event is for (zero indexed). E.g. Device ID = 3 would be the 4th this event is for (zero indexed). E.g. Device ID = 3 would be the 4th
device in the list of device paths. device in the list of device paths.
* A signed integer representing the number of seconds since "epoch" when the * A unsigned long integer representing the number of seconds since "epoch" when
event was recorded. the event was recorded.
* A signed integer representing the microseconds part of the timestamp. * A unsigned long integer representing the microseconds part of the timestamp.
* An unsigned integer representing the event type * An unsigned integer representing the event type
* An unsigned integer representing the event code * An unsigned integer representing the event code
* An unsigned integer representing the event value * An unsigned integer representing the event value