Skip to content

Commit fa02703

Browse files
authored
executors/GO: allow eventfd2; refs golang/go#65443
Signed-off-by: Witold Konior <witold.konior@qradium.com>
1 parent 315ede5 commit fa02703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dmoj/executors/GO.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Executor(CompiledExecutor):
2121
data_grace = 98304 # Go uses data segment for heap arena map
2222
address_grace = 786432
2323
command = 'go'
24-
syscalls = ['mincore', 'pselect6', 'mlock', 'setrlimit']
24+
syscalls = ['mincore', 'pselect6', 'mlock', 'setrlimit', 'eventfd2']
2525
compiler_syscalls = ['copy_file_range', 'setrlimit', 'pidfd_open', 'pidfd_send_signal']
2626
test_name = 'echo'
2727
test_program = """\

0 commit comments

Comments
 (0)