diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-04-20 05:29:11 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-04-20 05:29:11 +0200 |
commit | 7adeb6e88196a594ec3d36ffc1c658340ffcd7bc (patch) | |
tree | 6a6bfb84387141bf39d573ef9fa47f2c993d1923 /src/async.h | |
parent | b9c8603931203f5d94091f7a05a5967304b62fbd (diff) | |
download | fastd-7adeb6e88196a594ec3d36ffc1c658340ffcd7bc.tar fastd-7adeb6e88196a594ec3d36ffc1c658340ffcd7bc.zip |
Make ctx global
Diffstat (limited to 'src/async.h')
-rw-r--r-- | src/async.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/async.h b/src/async.h index a983ee9..7e1921c 100644 --- a/src/async.h +++ b/src/async.h @@ -37,6 +37,6 @@ struct fastd_async_resolve_return { }; -void fastd_async_init(fastd_context_t *ctx); -void fastd_async_handle(fastd_context_t *ctx); -void fastd_async_enqueue(fastd_context_t *ctx, fastd_async_type_t type, const void *data, size_t len); +void fastd_async_init(void); +void fastd_async_handle(void); +void fastd_async_enqueue(fastd_async_type_t type, const void *data, size_t len); |