X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Fltt%2Fconvert%2Fconvert.c;h=60dc3a6031498a751fcb14726df56d5577a8a0cb;hb=9ca560eb801f018c5cbc64c24b66b36e52b8ba32;hp=fd7e8d092578cfd4ae6689c66e4c4e2a72adad78;hpb=6173165398aebc9f9d2f913e74fe05b6ae10d57b;p=lttv.git diff --git a/ltt/branches/poly/ltt/convert/convert.c b/ltt/branches/poly/ltt/convert/convert.c index fd7e8d09..60dc3a60 100644 --- a/ltt/branches/poly/ltt/convert/convert.c +++ b/ltt/branches/poly/ltt/convert/convert.c @@ -378,13 +378,13 @@ int main(int argc, char ** argv){ write_to_buffer(write_pos_intr,(void*)&startId, sizeof(uint16_t)); write_to_buffer(write_pos_intr,(void*)&startTimeDelta, sizeof(uint32_t)); start_intr = start; - start_intr.nanoseconds -= 40; + start_intr.nanoseconds -= 20; write_to_buffer(write_pos_intr,(void*)&start_intr, sizeof(buffer_start)); write_to_buffer(write_pos_proc,(void*)&startId, sizeof(uint16_t)); write_to_buffer(write_pos_proc,(void*)&startTimeDelta, sizeof(uint32_t)); start_proc = start; - start_proc.nanoseconds -= 20; + start_proc.nanoseconds -= 40; write_to_buffer(write_pos_proc,(void*)&start_proc, sizeof(buffer_start)); //parse *.proc file to get process and irq info @@ -484,13 +484,13 @@ int main(int argc, char ** argv){ write_to_buffer(write_pos_intr,(void*)&newId,sizeof(uint16_t)); write_to_buffer(write_pos_intr,(void*)&time_delta, sizeof(uint32_t)); end_intr = end; - end_intr.nanoseconds -= 40; + end_intr.nanoseconds -= 20; write_to_buffer(write_pos_intr,(void*)&end_intr,sizeof(buffer_start)); write_to_buffer(write_pos_proc,(void*)&newId,sizeof(uint16_t)); write_to_buffer(write_pos_proc,(void*)&time_delta, sizeof(uint32_t)); end_proc = end; - end_proc.nanoseconds -= 20; + end_proc.nanoseconds -= 40; write_to_buffer(write_pos_proc,(void*)&end_proc,sizeof(buffer_start)); write_pos_intr = buf_intr + block_size - sizeof(uint32_t);