diff options
author | Dmitri Pal <dpal@redhat.com> | 2009-09-03 19:13:43 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-09-08 19:26:42 -0400 |
commit | 717f368f86f160744e27a430d3b4ec2fd4c3bd64 (patch) | |
tree | d85b1fa2823163c91746ffe844439247d0a209dc /common/elapi/elapi_log.h | |
parent | 13cf6a9c9d37a14ff46f6d512aab402616359570 (diff) | |
download | sssd-717f368f86f160744e27a430d3b4ec2fd4c3bd64.tar.gz sssd-717f368f86f160744e27a430d3b4ec2fd4c3bd64.tar.bz2 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.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/common/elapi/elapi_log.h b/common/elapi/elapi_log.h index 7d8a3b7d..7d783553 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); |