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/Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'common/elapi/Makefile.am') diff --git a/common/elapi/Makefile.am b/common/elapi/Makefile.am index d548a629d..08fd2d773 100644 --- a/common/elapi/Makefile.am +++ b/common/elapi/Makefile.am @@ -51,12 +51,16 @@ libelapi_la_SOURCES = \ elapi_event.c \ elapi_log.c \ elapi_internal.c \ - elapi_event.h \ elapi_sink.c \ + elapi_resolve.c \ + elapi_async.c \ + elapi_event.h \ elapi_priv.h \ elapi_sink.h \ elapi_log.h \ elapi_async.h \ + elapi_fd.h \ + elapi_tm.h \ elapi.h libelapi_la_LIBADD = libprovider.la libelapibasic.la -- cgit