From d88e4d7ce82657364025613b8f2ebe61192a0b03 Mon Sep 17 00:00:00 2001 From: compudj Date: Mon, 27 Feb 2006 22:18:47 +0000 Subject: [PATCH] format update git-svn-id: http://ltt.polymtl.ca/svn@1561 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/doc/developer/format.html | 39 ++++++--------------- 1 file changed, 11 insertions(+), 28 deletions(-) diff --git a/ltt/branches/poly/doc/developer/format.html b/ltt/branches/poly/doc/developer/format.html index a211ace1..4f921530 100644 --- a/ltt/branches/poly/doc/developer/format.html +++ b/ltt/branches/poly/doc/developer/format.html @@ -134,7 +134,7 @@ end uint64 cycle_count * TSC at the beginning of the buffer uint64 freq - * frequency of the CPUs at the beginning of the buffer. + * frequency of the CPUs at the end of the buffer. uint32 lost_size * number of bytes of padding at the end of the buffer. uint32 buf_size @@ -356,10 +356,10 @@ Finally the type structure may be defined by referencing a named type. <typeref name=type_name/> -

Builtin events

+

Core events

-The facility named "builtin" is always present and contains at least the +The facility named "core" is always present and contains at least the following event types.


@@ -368,20 +368,15 @@ following event types.
   <struct>
     <field name="name"><string/></field>
     <field name="checksum"><uint size=4/></field>
-    <field name="base_code"><uint size=4/></field>
+    <field name="id"><uint size=4/></field>
+    <field name="int_size"><uint size=4/></field>
+    <field name="long_size"><uint size=4/></field>
+    <field name="pointer_size"><uint size=4/></field>
+    <field name="size_t_size"><uint size=4/></field>
+    <field name="has_alignment"><uint size=4/></field>
   </struct>
 </event>
 
-<event name=block_start>
-  <description>Block start timestamp</description>
-  <typeref name=block_timestamp/>
-</event>
-
-<event name=block_end>
-  <description>Block end timestamp</description>
-  <typeref name=block_timestamp/>
-</event>
-
 <event name=time_heartbeat>
   <description>System time values sent periodically to minimize cycle counter 
     drift with respect to real time clock and to detect cycle counter
@@ -390,26 +385,14 @@ following event types.
   <typeref name=timestamp/>
 </event>
 
-<type name=block_timestamp>
-  <struct>
-    <field name=timestamp><typeref name=timestamp></field>
-    <field name=block_id><uint size=4/></field>
-  </struct>
-</type>
-
 <type name=timestamp>
   <struct>
-    <field name=time><typeref name=timespec/></event>
+    <field name="seconds"><uint size=4/></field>
+    <field name="nanoseconds"><uint size=4/></field>
     <field name="cycle_count"><uint size=8/></field>
   </struct>
 </event>
 
-<type name=timespec>
-  <struct>
-    <field name="seconds"><uint size=4/></field>
-    <field name="nanoseconds"><uint size=4/></field>
-  </struct>
-</type>
 

Control files

-- 2.34.1