From 8140cea7b4e3d3c9c6003eb6ae30e5e0fdd7c1ae Mon Sep 17 00:00:00 2001 From: Dmitri Pal Date: Thu, 17 Sep 2009 00:01:09 -0400 Subject: ELAPI Event resolver Started working on the async processing and realised that I need to have a good copy of the event with all the fields resolved so this patch has some foundation for the async functions (module elapi_async.c) but they are mostly stubbed out. The actual code will be added down the road. Instead the patch focuses on the code introduced in elapi_resolve.c module and the use of the functions from it. It also adds the implementation of the high level calls that initialize ELAPI with the external callbacks to be used during async processing (elapi_log.c). --- common/elapi/elapi_internal.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'common/elapi/elapi_internal.c') diff --git a/common/elapi/elapi_internal.c b/common/elapi/elapi_internal.c index d0fd48dc..d80725b2 100644 --- a/common/elapi/elapi_internal.c +++ b/common/elapi/elapi_internal.c @@ -74,11 +74,6 @@ int elapi_tgt_cb(const char *target, TRACE_INFO_STRING("Current event will be logged into the target:", target); - /* FIXME THIS IS A PLACEHOLDER FUNCTION FOR NOW */ - - printf("\n\n\nPROCESSING EVENT:\n"); - col_debug_collection(target_data->event, COL_TRAVERSE_DEFAULT); - /* Log event */ error = elapi_tgt_submit(target_data->handle, context, target_data->event); if (error) { @@ -86,7 +81,6 @@ int elapi_tgt_cb(const char *target, return error; } - TRACE_FLOW_STRING("elapi_tgt_cb", "Exit."); return EOK; } -- cgit