diff options
Diffstat (limited to 'sysdep/unix/coroutine.c')
-rw-r--r-- | sysdep/unix/coroutine.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdep/unix/coroutine.c b/sysdep/unix/coroutine.c index 12ba55d8..e4657157 100644 --- a/sysdep/unix/coroutine.c +++ b/sysdep/unix/coroutine.c @@ -145,10 +145,13 @@ static void coro_free(resource *r) coro_cleaned_up = 1; } +static void coro_dump(resource *r UNUSED) { } + static struct resclass coro_class = { .name = "Coroutine", .size = sizeof(struct coroutine), .free = coro_free, + .dump = coro_dump, }; _Thread_local struct coroutine *this_coro = NULL; |