Explorar el Código

Fix signess bug in the syscall dispatcher (#88)

Michał Kowalczyk hace 8 años
padre
commit
26eae52106
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      LibOS/shim/src/syscallas.S

+ 1 - 1
LibOS/shim/src/syscallas.S

@@ -41,7 +41,7 @@ syscalldb:
         pushq %rbx
 
         cmp $LIBOS_SYSCALL_BOUND, %rax
-        jge isundef
+        jae isundef
 
         leaq shim_table(%rip), %rbx
         movq (%rbx,%rax,8), %rbx