mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
bsd-user: Implement mlock(2), munlock(2), mlockall(2), munlockall(2), minherit(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-16-kariem.taha2.7@gmail.com>
This commit is contained in:
parent
f28a1e4bab
commit
0a49ef02a6
2 changed files with 57 additions and 0 deletions
|
@ -815,6 +815,26 @@ static abi_long freebsd_syscall(void *cpu_env, int num, abi_long arg1,
|
|||
ret = do_bsd_msync(arg1, arg2, arg3);
|
||||
break;
|
||||
|
||||
case TARGET_FREEBSD_NR_mlock: /* mlock(2) */
|
||||
ret = do_bsd_mlock(arg1, arg2);
|
||||
break;
|
||||
|
||||
case TARGET_FREEBSD_NR_munlock: /* munlock(2) */
|
||||
ret = do_bsd_munlock(arg1, arg2);
|
||||
break;
|
||||
|
||||
case TARGET_FREEBSD_NR_mlockall: /* mlockall(2) */
|
||||
ret = do_bsd_mlockall(arg1);
|
||||
break;
|
||||
|
||||
case TARGET_FREEBSD_NR_munlockall: /* munlockall(2) */
|
||||
ret = do_bsd_munlockall();
|
||||
break;
|
||||
|
||||
case TARGET_FREEBSD_NR_minherit: /* minherit(2) */
|
||||
ret = do_bsd_minherit(arg1, arg2, arg3);
|
||||
break;
|
||||
|
||||
#if defined(__FreeBSD_version) && __FreeBSD_version >= 1300048
|
||||
case TARGET_FREEBSD_NR_shm_open2: /* shm_open2(2) */
|
||||
ret = do_freebsd_shm_open2(arg1, arg2, arg3, arg4, arg5);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue