fix bug when remove all traces : the 1Xlength was not cleared to black
[lttv.git] / ltt / branches / poly / ltt / convert / convert.c
index e02944efb120e2360a6bcaa23c70c7c274c80858..d57403cad339cbf0cdcd9fd225e30efb4c692c84 100644 (file)
@@ -13,7 +13,8 @@
 #define PROCESS_EXIT_ID     21
 
 #define INFO_ENTRY          9
-#define OVERFLOW_FIGURE     4294967296
+#define OVERFLOW_FIGURE     0x100000000
+//#define OVERFLOW_FIGURE     0xffffffff
 
 typedef struct _new_process
 {
@@ -137,7 +138,8 @@ int main(int argc, char ** argv){
   new_process process;
 
   if(argc < 4){
-    printf("Not enough parameters\n");
+    printf("Usage : ./convert processfile_name number_of_cpu tracefile1 tracefile2 ... trace_creation_directory\n");
+               printf("For more details, see README.\n");
     exit(1);
   }
 
This page took 0.023704 seconds and 4 git commands to generate.