From 778d8766f2d5d09957731cc89089a5fcc0c8e93f Mon Sep 17 00:00:00 2001
From: Lionel Gauthier <lionel.gauthier@eurecom.fr>
Date: Fri, 28 Nov 2014 17:54:16 +0000
Subject: [PATCH] VCD gtkwave

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@6124 818b1a75-f10b-46b9-bf7c-635c3b92a50f
---
 openair-cn/UDP/udp_eNB_task.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/openair-cn/UDP/udp_eNB_task.c b/openair-cn/UDP/udp_eNB_task.c
index bf39a87ec0..d14ef294ad 100644
--- a/openair-cn/UDP/udp_eNB_task.c
+++ b/openair-cn/UDP/udp_eNB_task.c
@@ -50,6 +50,7 @@
 #include "udp_eNB_task.h"
 
 #include "UTIL/LOG/log.h"
+#include "UTIL/LOG/vcd_signal_dumper.h"
 
 #define IPV4_ADDR    "%u.%u.%u.%u"
 #define IPV4_ADDR_FORMAT(aDDRESS)               \
@@ -289,6 +290,7 @@ void *udp_eNB_task(void *args_p)
     itti_mark_task_ready(TASK_UDP);
     while(1) {
         itti_receive_msg(TASK_UDP, &received_message_p);
+        vcd_signal_dumper_dump_function_by_name(VCD_SIGNAL_DUMPER_FUNCTIONS_UDP_ENB_TASK, VCD_FUNCTION_IN);
         LOG_D(UDP_, "Got message %p\n", &received_message_p);
         if (received_message_p != NULL) {
 
@@ -386,6 +388,7 @@ on_error:
         	LOG_D(UDP_, "UDP task Process %d events\n",nb_events);
             udp_eNB_process_file_descriptors(events, nb_events);
         }
+        vcd_signal_dumper_dump_function_by_name(VCD_SIGNAL_DUMPER_FUNCTIONS_UDP_ENB_TASK, VCD_FUNCTION_OUT);
     }
     LOG_N(UDP_, "Task UDP eNB exiting\n");
     return NULL;
-- 
GitLab