From 11452dc4501d6d4883493d7f02a644adbf0fbbb8 Mon Sep 17 00:00:00 2001 From: yangxx Date: Fri, 18 Jul 2003 20:49:30 +0000 Subject: [PATCH 1/1] git-svn-id: http://ltt.polymtl.ca/svn@122 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/yangxx/convert/convert.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ltt/branches/yangxx/convert/convert.c b/ltt/branches/yangxx/convert/convert.c index b16e8fe3..84c49118 100644 --- a/ltt/branches/yangxx/convert/convert.c +++ b/ltt/branches/yangxx/convert/convert.c @@ -501,7 +501,7 @@ int main(int argc, char ** argv){ }else nbBytes = 0; if(ltt_log_cpu){ - size_count[cpu_id] += nbBytes + sizeof(uint16_t) + sizeof(uint32_t); + size_count[cpu_id] += nbBytes + sizeof(uint16_t) + sizeof(uint32_t)+ event_size; if(size_count[cpu_id] > block_size - reserve_size){ printf("size count exceeds the limit of the buffer\n"); exit(1); @@ -514,7 +514,7 @@ int main(int argc, char ** argv){ write_to_buffer(write_pos[cpu_id], (void*)&c, 1); } }else{ - size_count[0] += nbBytes + sizeof(uint16_t) + sizeof(uint32_t); + size_count[0] += nbBytes + sizeof(uint16_t) + sizeof(uint32_t)+event_size; if(size_count[0] > block_size - reserve_size){ printf("size count exceeds the limit of the buffer\n"); exit(1); -- 2.34.1