From 67afa497d98ae13c3eab81367e89b8f11ed80c95 Mon Sep 17 00:00:00 2001 From: Nikita Kalyazin Date: Fri, 11 Oct 2013 14:20:29 +0400 Subject: [PATCH] [PROTO] message id update (starting from 0x0001) Change-Id: Ic8e23f6af781fa812d7bd5bfd24e264e154cf75c Signed-off-by: Nikita Kalyazin --- writer/swap_writer_module.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/writer/swap_writer_module.c b/writer/swap_writer_module.c index d2dcd18..4d1ca60 100644 --- a/writer/swap_writer_module.c +++ b/writer/swap_writer_module.c @@ -46,13 +46,13 @@ enum MSG_ID { - MSG_PROC_INFO = 0x2002, - MSG_ERROR = 0x2005, - MSG_SAMPLE = 0x2006, - MSG_FUNCTION_ENTRY = 0x2010, - MSG_FUNCTION_EXIT = 0x2011, - MSG_CONTEXT_SWITCH_ENTRY = 0x2012, - MSG_CONTEXT_SWITCH_EXIT = 0x2013 + MSG_PROC_INFO = 0x0001, + MSG_ERROR = 0x0003, + MSG_SAMPLE = 0x0004, + MSG_FUNCTION_ENTRY = 0x0008, + MSG_FUNCTION_EXIT = 0x0009, + MSG_CONTEXT_SWITCH_ENTRY = 0x0010, + MSG_CONTEXT_SWITCH_EXIT = 0x0011 }; static char *cpu_buf[NR_CPUS]; -- 2.7.4