summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/kit/async_function.h12
-rw-r--r--source/test/unittests/async_function.test.c2
2 files changed, 7 insertions, 7 deletions
diff --git a/source/kit/async_function.h b/source/kit/async_function.h
index 0fa565a..5ae9ade 100644
--- a/source/kit/async_function.h
+++ b/source/kit/async_function.h
@@ -1,6 +1,8 @@
#ifndef KIT_ASYNC_FUNCTION_H
#define KIT_ASYNC_FUNCTION_H
+#include <string.h>
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -156,12 +158,10 @@ typedef struct {
(promise_) = kit_af_temp_; \
} while (0)
-#define KIT_AF_INIT_EXPLICIT(promise_, coro_func_) \
- do { \
- (promise_)._index = 0; \
- (promise_)._state_machine = (coro_func_); \
- (promise_)._context.state = NULL; \
- (promise_)._context.execute = NULL; \
+#define KIT_AF_INIT_EXPLICIT(promise_, size_, coro_func_) \
+ do { \
+ memset(&(promise_), 0, size_); \
+ (promise_)._state_machine = (coro_func_); \
} while (0)
#define KIT_AF_EXECUTION_CONTEXT(promise_, ...) \
diff --git a/source/test/unittests/async_function.test.c b/source/test/unittests/async_function.test.c
index f4571a0..1ff3031 100644
--- a/source/test/unittests/async_function.test.c
+++ b/source/test/unittests/async_function.test.c
@@ -86,7 +86,7 @@ TEST("coroutine init") {
TEST("coroutine init explicit") {
AF_TYPE(test_foo) promise;
- AF_INIT_EXPLICIT(promise, AF_NAME(test_foo));
+ AF_INIT_EXPLICIT(promise, sizeof promise, AF_NAME(test_foo));
REQUIRE(!AF_FINISHED(promise));
}