forked from DMOJ/judge-server
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from mcpt/DMOJ-merge
Merge upstream. This is quite large because upstream merged the testsuite repository in.
- Loading branch information
Showing
405 changed files
with
13,395 additions
and
1,589 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,11 @@ | |
'AWK', | ||
'BF', | ||
'C', | ||
'C11', | ||
'CPP03', | ||
'CPP11', | ||
'CPP14', | ||
'CPP17', | ||
'CLANG', | ||
'CLANGX', | ||
'JAVA8', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from dmoj.cptbox._cptbox import PTBOX_ABI_ARM, PTBOX_ABI_ARM64, PTBOX_ABI_X32, PTBOX_ABI_X64, PTBOX_ABI_X86 | ||
from dmoj.cptbox.handlers import ALLOW, DISALLOW | ||
from dmoj.cptbox.isolate import IsolateTracer | ||
from dmoj.cptbox.syscalls import SYSCALL_COUNT | ||
from dmoj.cptbox.tracer import PIPE, TracedPopen | ||
from dmoj.cptbox.tracer import PIPE, TracedPopen, can_debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,23 @@ | ||
from typing import Any, Callable | ||
from typing import Any, Callable, List | ||
|
||
DEBUGGER_X86: int | ||
DEBUGGER_X64: int | ||
DEBUGGER_X86_ON_X64: int | ||
DEBUGGER_X32: int | ||
DEBUGGER_ARM: int | ||
DEBUGGER_ARM64: int | ||
PTBOX_ABI_X86: int | ||
PTBOX_ABI_X64: int | ||
PTBOX_ABI_X32: int | ||
PTBOX_ABI_ARM: int | ||
PTBOX_ABI_ARM64: int | ||
PTBOX_ABI_FREEBSD_X64: int | ||
PTBOX_ABI_INVALID: int | ||
PTBOX_ABI_COUNT: int | ||
|
||
ALL_ABIS: List[int] | ||
SUPPORTED_ABIS: List[int] | ||
|
||
Debugger: Any | ||
Process: Any | ||
|
||
AT_FDCWD: int | ||
bsd_get_proc_cwd: Callable[[int], str] | ||
bsd_get_proc_fdno: Callable[[int, int], str] | ||
|
||
memory_fd_create: Callable[[], int] | ||
memory_fd_seal: Callable[[int], None] |
Oops, something went wrong.