diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2023-03-09 09:44:54 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2023-04-25 13:17:28 +0200 |
commit | 10bf10a8e30663ba59ad31918eaa0b9ee3885fac (patch) | |
tree | b38491172558c3b33f0bd6b3e6f947cf2c5435b7 /tests | |
parent | 70bd77bea50b08362d66b634e9c66739dfddd949 (diff) |
tests: mark more coroutine_fns
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20230309084456.304669-8-pbonzini@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/test-thread-pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test-thread-pool.c b/tests/unit/test-thread-pool.c index 448fbf7e5f..1483e53473 100644 --- a/tests/unit/test-thread-pool.c +++ b/tests/unit/test-thread-pool.c @@ -70,7 +70,7 @@ static void test_submit_aio(void) g_assert_cmpint(data.ret, ==, 0); } -static void co_test_cb(void *opaque) +static void coroutine_fn co_test_cb(void *opaque) { WorkerTestData *data = opaque; |