summaryrefslogtreecommitdiffstats
path: root/src/async.h
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-04-20 05:29:11 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-04-20 05:29:11 +0200
commit7adeb6e88196a594ec3d36ffc1c658340ffcd7bc (patch)
tree6a6bfb84387141bf39d573ef9fa47f2c993d1923 /src/async.h
parentb9c8603931203f5d94091f7a05a5967304b62fbd (diff)
downloadfastd-7adeb6e88196a594ec3d36ffc1c658340ffcd7bc.tar
fastd-7adeb6e88196a594ec3d36ffc1c658340ffcd7bc.zip
Make ctx global
Diffstat (limited to 'src/async.h')
-rw-r--r--src/async.h6
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);