Skip to content

Commit

Permalink
Added sys_personality syscall
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Mar 28, 2019
1 parent 30d585e commit e3e3aaf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/x86syscall.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ scwrap_t syscallwrap[] = {
{ 91, __NR_munmap, 2 },
{ 109, __NR_uname, 1 },
//{120, __NR_clone, 1 }, // need works, args is struct pt_regs...
{ 125,__NR_mprotect, 3 },
{ 125, __NR_mprotect, 3 },
{ 136, __NR_personality, 1 },
{ 140,__NR__llseek, 5 },
#ifdef __NR_select
{ 142, __NR_select, 5 },
Expand Down

0 comments on commit e3e3aaf

Please sign in to comment.