git-svn-id: http://ltt.polymtl.ca/svn@169 04897980-b3bd-0310-b5e0-8ef037075253
authoryangxx <yangxx@04897980-b3bd-0310-b5e0-8ef037075253>
Wed, 6 Aug 2003 12:50:24 +0000 (12:50 +0000)
committeryangxx <yangxx@04897980-b3bd-0310-b5e0-8ef037075253>
Wed, 6 Aug 2003 12:50:24 +0000 (12:50 +0000)
ltt/branches/poly/include/ltt/ltt.h
ltt/branches/poly/include/ltt/type.h

index 17303a08922b1ef52ceabae27854f0a8ac786968..d177e946d331e6b61c552efd230eb0f8e06df912 100644 (file)
@@ -75,7 +75,10 @@ typedef unsigned long LttChecksum;
    times per second) of the real time clock with their corresponding 
    cycle count values. */
 
-typedef struct timespec LttTime;
+typedef struct _LttTime {
+  unsigned long tv_sec;
+  unsigned long tv_nsec;
+} LttTime;
 
 typedef uint64_t LttCycleCount;
 
index e43a1fd6562e8666a9a097dd9b2ebc00b3889a16..d62871bbe4d779329232fe6c1c6737fb56dd0144 100644 (file)
@@ -61,7 +61,7 @@ unsigned ltt_type_member_number(LttType *t);
 
 /* The type of a data member in a structure. */
 
-LttType *ltt_type_member_type(LttType *t, unsigned i);
+LttType *ltt_type_member_type(LttType *t, unsigned i, char ** name);
 
 
 /* For enumerations, obtain the symbolic string associated with a value
This page took 0.02419 seconds and 4 git commands to generate.