mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
bsd-user: Implement shmctl(2)
Signed-off-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Karim Taha <kariem.taha2.7@gmail.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230925182709.4834-22-kariem.taha2.7@gmail.com>
This commit is contained in:
parent
9d14db15b1
commit
f9bbe3cf28
2 changed files with 43 additions and 0 deletions
|
@ -867,6 +867,10 @@ static abi_long freebsd_syscall(void *cpu_env, int num, abi_long arg1,
|
|||
ret = do_bsd_shmget(arg1, arg2, arg3);
|
||||
break;
|
||||
|
||||
case TARGET_FREEBSD_NR_shmctl: /* shmctl(2) */
|
||||
ret = do_bsd_shmctl(arg1, arg2, arg3);
|
||||
break;
|
||||
|
||||
/*
|
||||
* Misc
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue