mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00
bsd-user: Implement mkfifo and mkfifoat
Signed-off-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
17a4d13cea
commit
5fbd8011ff
2 changed files with 35 additions and 0 deletions
|
@ -867,4 +867,31 @@ static abi_long do_bsd_flock(abi_long arg1, abi_long arg2)
|
|||
return get_errno(flock(arg1, arg2));
|
||||
}
|
||||
|
||||
/* mkfifo(2) */
|
||||
static abi_long do_bsd_mkfifo(abi_long arg1, abi_long arg2)
|
||||
{
|
||||
abi_long ret;
|
||||
void *p;
|
||||
|
||||
LOCK_PATH(p, arg1);
|
||||
ret = get_errno(mkfifo(p, arg2)); /* XXX path(p)? */
|
||||
UNLOCK_PATH(p, arg1);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* mkfifoat(2) */
|
||||
static abi_long do_bsd_mkfifoat(abi_long arg1, abi_long arg2,
|
||||
abi_long arg3)
|
||||
{
|
||||
abi_long ret;
|
||||
void *p;
|
||||
|
||||
LOCK_PATH(p, arg2);
|
||||
ret = get_errno(mkfifoat(arg1, p, arg3));
|
||||
UNLOCK_PATH(p, arg2);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
#endif /* BSD_FILE_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue