Skip to content

Commit

Permalink
vm_syscall_handler error
Browse files Browse the repository at this point in the history
Signed-off-by: kenaml <[email protected]>
  • Loading branch information
kenaml committed Nov 14, 2024
1 parent 9736082 commit 672a220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsel4vm/src/arch/arm/syscalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ int vm_syscall_handler(vm_vcpu_t *vcpu)
{
int err;
err = handle_syscall(vcpu);
if (!err) {
if (err == VM_EXIT_HANDLED) {
seL4_MessageInfo_t reply;
reply = seL4_MessageInfo_new(0, 0, 0, 0);
seL4_Reply(reply);
Expand Down

0 comments on commit 672a220

Please sign in to comment.