From d7a273567868a377e5b05a5da3a1af455cf11668 Mon Sep 17 00:00:00 2001 From: int-y1 Date: Sat, 21 Dec 2024 13:14:47 -0500 Subject: [PATCH] executors/go: allow new compiler syscalls --- dmoj/executors/GO.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmoj/executors/GO.py b/dmoj/executors/GO.py index 6b513e8b1..761b21974 100644 --- a/dmoj/executors/GO.py +++ b/dmoj/executors/GO.py @@ -22,7 +22,7 @@ class Executor(CompiledExecutor): address_grace = 786432 command = 'go' syscalls = ['mincore', 'pselect6', 'mlock', 'setrlimit'] - compiler_syscalls = ['copy_file_range', 'setrlimit'] + compiler_syscalls = ['copy_file_range', 'setrlimit', 'pidfd_open', 'pidfd_send_signal'] test_name = 'echo' test_program = """\ package main