mirror of https://github.com/xemu-project/xemu.git
9pfs: add missing coroutine_fn annotations
Signed-off-by: Greg Kurz <groug@kaod.org>
This commit is contained in:
parent
a9e404600a
commit
a1bf8b7414
|
@ -1571,7 +1571,7 @@ out_nofid:
|
||||||
v9fs_string_free(&name);
|
v9fs_string_free(&name);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void v9fs_fsync(void *opaque)
|
static void coroutine_fn v9fs_fsync(void *opaque)
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
int32_t fid;
|
int32_t fid;
|
||||||
|
@ -2337,7 +2337,7 @@ out_nofid:
|
||||||
v9fs_string_free(&symname);
|
v9fs_string_free(&symname);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void v9fs_flush(void *opaque)
|
static void coroutine_fn v9fs_flush(void *opaque)
|
||||||
{
|
{
|
||||||
ssize_t err;
|
ssize_t err;
|
||||||
int16_t tag;
|
int16_t tag;
|
||||||
|
|
Loading…
Reference in New Issue