mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
linux-user: Support F_GETPIPE_SZ and F_SETPIPE_SZ fcntls
Support the F_GETPIPE_SZ and F_SETPIPE_SZ fcntl operations. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
This commit is contained in:
parent
4debae6fa5
commit
7e3b92ece0
3 changed files with 15 additions and 0 deletions
|
@ -918,6 +918,13 @@ print_fcntl(const struct syscallname *name,
|
|||
case TARGET_F_GETLEASE:
|
||||
gemu_log("F_GETLEASE");
|
||||
break;
|
||||
case TARGET_F_SETPIPE_SZ:
|
||||
gemu_log("F_SETPIPE_SZ,");
|
||||
print_raw_param(TARGET_ABI_FMT_ld, arg2, 1);
|
||||
break;
|
||||
case TARGET_F_GETPIPE_SZ:
|
||||
gemu_log("F_GETPIPE_SZ");
|
||||
break;
|
||||
case TARGET_F_DUPFD_CLOEXEC:
|
||||
gemu_log("F_DUPFD_CLOEXEC,");
|
||||
print_raw_param(TARGET_ABI_FMT_ld, arg2, 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue