mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-26 20:03:54 -06:00
bsd-user: Implement fdatasync, fsync and close_from
Implement fdatasync(2), fsync(2) and close_from(2). Signed-off-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Jung-uk Kim <jkim@FreeBSD.org> Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
77d3522b3f
commit
a2ba6c7b80
2 changed files with 31 additions and 0 deletions
|
@ -239,4 +239,23 @@ static inline abi_long do_bsd_close(abi_long arg1)
|
|||
return get_errno(close(arg1));
|
||||
}
|
||||
|
||||
/* fdatasync(2) */
|
||||
static abi_long do_bsd_fdatasync(abi_long arg1)
|
||||
{
|
||||
return get_errno(fdatasync(arg1));
|
||||
}
|
||||
|
||||
/* fsync(2) */
|
||||
static abi_long do_bsd_fsync(abi_long arg1)
|
||||
{
|
||||
return get_errno(fsync(arg1));
|
||||
}
|
||||
|
||||
/* closefrom(2) */
|
||||
static abi_long do_bsd_closefrom(abi_long arg1)
|
||||
{
|
||||
closefrom(arg1); /* returns void */
|
||||
return get_errno(0);
|
||||
}
|
||||
|
||||
#endif /* BSD_FILE_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue