mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add _llseek syscall
This is the newer verion of lseek on many 32 bit platforms Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
This commit is contained in:
parent
d6a9c5abed
commit
923609179b
1 changed files with 5 additions and 0 deletions
|
@ -643,6 +643,11 @@ var defaultSeccompProfile = &configs.Seccomp{
|
||||||
Action: configs.Allow,
|
Action: configs.Allow,
|
||||||
Args: []*configs.Arg{},
|
Args: []*configs.Arg{},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Name: "_llseek",
|
||||||
|
Action: configs.Allow,
|
||||||
|
Args: []*configs.Arg{},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
Name: "lremovexattr",
|
Name: "lremovexattr",
|
||||||
Action: configs.Allow,
|
Action: configs.Allow,
|
||||||
|
|
Loading…
Reference in a new issue