瀏覽代碼

Fix signess bug in the syscall dispatcher (#88)

Michał Kowalczyk 8 年之前
父節點
當前提交
26eae52106
共有 1 個文件被更改,包括 1 次插入1 次删除
  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