Skip to content

Commit

Permalink
executors/go: allow new compiler syscalls
Browse files Browse the repository at this point in the history
  • Loading branch information
int-y1 authored and quantum5 committed Dec 21, 2024
1 parent 7701313 commit d7a2735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dmoj/executors/GO.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d7a2735

Please sign in to comment.