From 80de43a4837a08094809654728cdfb608fc45fb8 Mon Sep 17 00:00:00 2001 From: dzambare Date: Fri, 17 Apr 2020 12:06:43 +0530 Subject: [PATCH] Disable execution and debug trace by default. Change-Id: I126336bc3d8a49019b083e66621c6a79725f7f0d --- aocl_dtl/aocldtlcf.h | 6 +++--- aocl_dtl/aoclflist.c | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/aocl_dtl/aocldtlcf.h b/aocl_dtl/aocldtlcf.h index c0ebb6c7d..1ec915a5e 100644 --- a/aocl_dtl/aocldtlcf.h +++ b/aocl_dtl/aocldtlcf.h @@ -14,15 +14,15 @@ /* Macro for tracing the log If the user wants to enable tracing he has to enable this macro by making it to 1 else 0 */ -#define AOCL_DTL_TRACE_ENABLE 1 +//#define AOCL_DTL_TRACE_ENABLE 1 /* Macro for dumping the log If the user wants to enable dumping he has to enable this macro by making it to 1 else 0 */ -#define AOCL_DTL_DUMP_ENABLE 1 +//#define AOCL_DTL_DUMP_ENABLE 1 /* Macro for logging the logs If the user wants to enable loging information he has to enable this macro by making it to 1 else 0 */ -#define AOCL_DTL_LOG_ENABLE 1 +//#define AOCL_DTL_LOG_ENABLE 1 #define AOCL_DTL_TRACE_FILE "aocldtl_trace.wri" #define AOCL_DTL_AUTO_TRACE_FILE "aocldtl_auto_trace.wri" diff --git a/aocl_dtl/aoclflist.c b/aocl_dtl/aoclflist.c index 227347746..4215ef988 100644 --- a/aocl_dtl/aoclflist.c +++ b/aocl_dtl/aoclflist.c @@ -112,7 +112,6 @@ AOCL_FAL_FILE *AOCL_FLIST_AddFile(const int8 *pchFilePrefix, AOCL_FLIST_Node **p temp->pNext = newNode; } - AOCL_DEBUGPRINT("Created file for tid = %d", tid); return newNode->fp; } /* AOCL_FLIST_AddFile */