Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd/snap-seccomp/syscalls: added new syscalls #14886

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion cmd/snap-seccomp/syscalls/syscalls.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
package syscalls

// Generated using arch-syscall-dump test tool from libseccomp tree, git
// revision aa168d49243b95f63b9825a87351a1eb323dc792.
// revision 42b596818635bf9d1cae54fa87e8c7b2e16869d3.
var SeccompSyscalls = []string{
"_llseek",
"_newselect",
Expand Down Expand Up @@ -175,6 +175,7 @@ var SeccompSyscalls = []string{
"getuid",
"getuid32",
"getxattr",
"getxattrat",
"gtty",
"idle",
"init_module",
Expand Down Expand Up @@ -214,6 +215,7 @@ var SeccompSyscalls = []string{
"listen",
"listmount",
"listxattr",
"listxattrat",
"llistxattr",
"lock",
"lookup_dcookie",
Expand Down Expand Up @@ -336,6 +338,7 @@ var SeccompSyscalls = []string{
"recvmsg",
"remap_file_pages",
"removexattr",
"removexattrat",
"rename",
"renameat",
"renameat2",
Expand Down Expand Up @@ -422,6 +425,7 @@ var SeccompSyscalls = []string{
"setuid",
"setuid32",
"setxattr",
"setxattrat",
"sgetmask",
"shmat",
"shmctl",
Expand Down
Loading