mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-08 04:15:36 +00:00
'syscall' syscall
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1181 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
808c4954bf
commit
42ad6ae973
@ -2338,6 +2338,11 @@ long do_syscall(void *cpu_env, int num, long arg1, long arg2, long arg3,
|
|||||||
#ifdef TARGET_NR_idle
|
#ifdef TARGET_NR_idle
|
||||||
case TARGET_NR_idle:
|
case TARGET_NR_idle:
|
||||||
goto unimplemented;
|
goto unimplemented;
|
||||||
|
#endif
|
||||||
|
#ifdef TARGET_NR_syscall
|
||||||
|
case TARGET_NR_syscall:
|
||||||
|
ret = do_syscall(cpu_env,arg1 & 0xffff,arg2,arg3,arg4,arg5,arg6,0);
|
||||||
|
break;
|
||||||
#endif
|
#endif
|
||||||
case TARGET_NR_wait4:
|
case TARGET_NR_wait4:
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user