summaryrefslogtreecommitdiffstats
path: root/common/elapi/elapi_log.h
diff options
context:
space:
mode:
authorDmitri Pal <dpal@redhat.com>2009-09-03 19:13:43 -0400
committerStephen Gallagher <sgallagh@redhat.com>2009-09-08 19:26:42 -0400
commit717f368f86f160744e27a430d3b4ec2fd4c3bd64 (patch)
treed85b1fa2823163c91746ffe844439247d0a209dc /common/elapi/elapi_log.h
parent13cf6a9c9d37a14ff46f6d512aab402616359570 (diff)
downloadsssd-717f368f86f160744e27a430d3b4ec2fd4c3bd64.tar.gz
sssd-717f368f86f160744e27a430d3b4ec2fd4c3bd64.tar.xz
sssd-717f368f86f160744e27a430d3b4ec2fd4c3bd64.zip
ELAPI Laying foundation for the async processing
A relatively small patch aligning headers and a small portion of code for upcoming implementation of the async event processing. Cleanup of the test config file.
Diffstat (limited to 'common/elapi/elapi_log.h')
-rw-r--r--common/elapi/elapi_log.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/common/elapi/elapi_log.h b/common/elapi/elapi_log.h
index 7d8a3b7d2..7d783553d 100644
--- a/common/elapi/elapi_log.h
+++ b/common/elapi/elapi_log.h
@@ -52,10 +52,7 @@ int elapi_create_dispatcher(struct elapi_dispatcher **dispatcher, /* Handle of
int elapi_create_dispatcher_adv(struct elapi_dispatcher **dispatcher, /* Handle of the dispatcher will be stored in this variable */
const char *appname, /* Application name. Passed to the sinks to do initialization */
const char *config_path, /* See notes below in the elapi_init() function. */
- elapi_add_fd add_fd_add_fn, /* Caller's function to add file descriptor */
- elapi_rem_fd add_fd_rem_fn, /* Caller's function to remove file descriptor */
- elapi_add_timer add_timer_fn, /* Caller's function to add timer */
- void *callers_data); /* Data that needs to be passed when caller's callback is called. */
+ struct elapi_async_ctx *async_ctx); /* Async context. */
/* Function to clean memory associated with the dispatcher */
void elapi_destroy_dispatcher(struct elapi_dispatcher *dispatcher);