Do not use LttCycleCount elsewhere than in processing_lttv
authorBenjamin Poirier <benjamin.poirier@polymtl.ca>
Fri, 13 Nov 2009 17:06:09 +0000 (12:06 -0500)
committerBenjamin Poirier <benjamin.poirier@polymtl.ca>
Fri, 18 Dec 2009 19:04:17 +0000 (14:04 -0500)
Signed-off-by: Benjamin Poirier <benjamin.poirier@polymtl.ca>
lttv/lttv/sync/data_structures.h
lttv/lttv/sync/event_analysis_chull.h
lttv/lttv/sync/event_analysis_eval.h
lttv/lttv/sync/event_matching_tcp.c

index b6bc89801692d8d224f0a820d11e60232233d9b8..697f29a63e29ee5200918f07a8d11d305d4a50eb 100644 (file)
@@ -23,8 +23,6 @@
 #include <stdbool.h>
 #include <stdint.h>
 
-#include <ltt/ltt.h>
-
 
 enum Direction
 {
index 3059cf50228a056d4d0c408eaecac3539fe4e02e..c9e82457220fa4d6f3bc24f04e226e47d10bd901 100644 (file)
@@ -26,7 +26,7 @@
 
 typedef struct
 {
-       LttCycleCount x, y;
+       uint64_t x, y;
 } Point;
 
 
index d30fb1ef59883bad4d5b8789844909b1bba316dc..b02c77212e42b0436d0f49b1beae6ab9c8c8776c 100644 (file)
@@ -70,9 +70,9 @@ struct Bins
 typedef struct
 {
         /* File pointers to files where "trip times" (message latency) histogram
-         * values are outputted. Each host-pair has two files, one for each
-         * message direction. As for traces, the host with the smallest address
-         * is considered to be the reference for the direction of messages (ie.
+         * values are output. Each host-pair has two files, one for each message
+         * direction. As for traces, the host with the smallest address is
+         * considered to be the reference for the direction of messages (ie.
          * messages from the host with the lowest address to the host with the
          * largest address are "sent"). */
        FILE* ttSendPoints;
@@ -82,7 +82,7 @@ typedef struct
        struct Bins ttRecvBins;
 
        /* File pointers to files where half round trip times (evaluated from
-        * exchanges) histogram values are outputted. */
+        * exchanges) histogram values are output. */
        FILE* hrttPoints;
 
        struct Bins hrttBins;
index 9c3e6a9d3606bef458b2782160b8e4fb0ae46546..3bfe479ed48ad8e3b4e22199c43ab3825d5ae37e 100644 (file)
@@ -634,7 +634,7 @@ static void openGraphDataFiles(SyncState* const syncState)
  */
 static void writeMessagePoint(FILE* stream, const Message* const message)
 {
-       LttCycleCount x, y;
+       uint64_t x, y;
 
        if (message->inE->traceNum < message->outE->traceNum)
        {
This page took 0.025252 seconds and 4 git commands to generate.