Changeset 1339
- Timestamp:
- 02/04/08 16:34:39 (9 months ago)
- Files:
-
- trunk/examples/stats/stats.c (modified) (1 diff)
- trunk/tools/tracereport/ecn_report.c (modified) (2 diffs)
- trunk/tools/tracereport/tracereport.h (modified) (1 diff)
- trunk/tools/tracestats/tracestats.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/examples/stats/stats.c
r1292 r1339 5 5 #include <stdlib.h> 6 6 #include <string.h> 7 #include "lt_inttypes.h" 7 8 8 9 double lastts = 0.0; trunk/tools/tracereport/ecn_report.c
r1214 r1339 29 29 { 30 30 int i,j; 31 int total = 0; 31 32 32 33 FILE *out = fopen("ecn.rpt", "w"); … … 83 84 } 84 85 85 int total = 0;86 86 for(i=0;i<4;i++){ 87 87 for(j=1;j<4;j++) trunk/tools/tracereport/tracereport.h
r1310 r1339 1 1 #ifndef TRACEREPORT_H 2 2 #define TRACEREPORT_H 3 4 #include "lt_inttypes.h" 3 5 4 6 typedef struct { trunk/tools/tracestats/tracestats.c
r1310 r1339 54 54 55 55 #include "libtrace.h" 56 57 #ifndef PRIu64 58 #define PRIu64 "llu" 59 #endif 56 #include "lt_inttypes.h" 60 57 61 58 struct libtrace_t *trace;
