Skip to content

Commit

Permalink
Fix ppc64le syscall numbers for newer calls
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Cormack <justin@specialbusservice.com>
  • Loading branch information
justincormack committed Feb 12, 2017
1 parent 62828f6 commit 8d3034c
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions syscall/linux/ppc64le/nr.lua
Original file line number Diff line number Diff line change
Expand Up @@ -349,15 +349,19 @@ local nr = {
kcmp = 354,
sched_setattr = 355,
sched_getattr = 356,
kcmp = 357,
finit_module = 358,
sched_setattr = 359,
sched_getattr = 360,
renameat2 = 361,
seccomp = 362,
getrandom = 363,
memfd_create = 364,
bpf = 365,
renameat2 = 357,
seccomp = 358,
getrandom = 359,
memfd_create = 360,
bpf = 361,
execveat = 362,
switch_endian = 363,
userfaultfd = 364,
membarrier = 365,
mlock2 = 378,
copy_file_range = 379,
preadv2 = 380,
pwritev2 = 381,
}
}

Expand Down

0 comments on commit 8d3034c

Please sign in to comment.