From dd360922d1b55e9a4f1b1fb628994ea98c38865e Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Tue, 8 Dec 2015 17:27:40 +0000 Subject: [PATCH] Fix exit syscall entries Change syscall names to match kernel __NR_* constants. * linux/avr32/syscallent.h [1]: Rename "_exit" to "exit". * linux/bfin/syscallent.h: Likewise. * linux/i386/syscallent.h: Likewise. * linux/m68k/syscallent.h: Likewise. * linux/microblaze/syscallent.h: Likewise. * linux/sh/syscallent.h: Likewise. * linux/sh64/syscallent.h: Likewise. * linux/x32/syscallent.h [60]: Rename "_exit" to "exit". * linux/x86_64/syscallent.h: Likewise. --- linux/avr32/syscallent.h | 2 +- linux/bfin/syscallent.h | 2 +- linux/i386/syscallent.h | 2 +- linux/m68k/syscallent.h | 2 +- linux/microblaze/syscallent.h | 2 +- linux/sh/syscallent.h | 2 +- linux/sh64/syscallent.h | 2 +- linux/x32/syscallent.h | 2 +- linux/x86_64/syscallent.h | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/linux/avr32/syscallent.h b/linux/avr32/syscallent.h index ee657caf..05892e78 100644 --- a/linux/avr32/syscallent.h +++ b/linux/avr32/syscallent.h @@ -26,7 +26,7 @@ */ [ 0] = { 0, 0, SEN(setup), "setup" }, -[ 1] = { 1, TP|SE, SEN(exit), "_exit" }, +[ 1] = { 1, TP|SE, SEN(exit), "exit" }, [ 2] = { 0, TP, SEN(fork), "fork" }, [ 3] = { 3, TD, SEN(read), "read" }, [ 4] = { 3, TD, SEN(write), "write" }, diff --git a/linux/bfin/syscallent.h b/linux/bfin/syscallent.h index 51a57142..6ce6c524 100644 --- a/linux/bfin/syscallent.h +++ b/linux/bfin/syscallent.h @@ -27,7 +27,7 @@ */ [ 0] = { 0, 0, SEN(restart_syscall), "restart_syscall" }, -[ 1] = { 1, TP|SE, SEN(exit), "_exit" }, +[ 1] = { 1, TP|SE, SEN(exit), "exit" }, [ 2] = { 0, TP, SEN(fork), "fork" }, [ 3] = { 3, TD, SEN(read), "read" }, [ 4] = { 3, TD, SEN(write), "write" }, diff --git a/linux/i386/syscallent.h b/linux/i386/syscallent.h index 3f2588e4..9886c4b8 100644 --- a/linux/i386/syscallent.h +++ b/linux/i386/syscallent.h @@ -27,7 +27,7 @@ */ [ 0] = { 0, 0, SEN(restart_syscall), "restart_syscall" }, -[ 1] = { 1, TP|SE, SEN(exit), "_exit" }, +[ 1] = { 1, TP|SE, SEN(exit), "exit" }, [ 2] = { 0, TP, SEN(fork), "fork" }, [ 3] = { 3, TD, SEN(read), "read" }, [ 4] = { 3, TD, SEN(write), "write" }, diff --git a/linux/m68k/syscallent.h b/linux/m68k/syscallent.h index 5c35e618..89616d16 100644 --- a/linux/m68k/syscallent.h +++ b/linux/m68k/syscallent.h @@ -27,7 +27,7 @@ */ [ 0] = { 0, 0, SEN(restart_syscall), "restart_syscall" }, -[ 1] = { 1, TP|SE, SEN(exit), "_exit" }, +[ 1] = { 1, TP|SE, SEN(exit), "exit" }, [ 2] = { 0, TP, SEN(fork), "fork" }, [ 3] = { 3, TD, SEN(read), "read" }, [ 4] = { 3, TD, SEN(write), "write" }, diff --git a/linux/microblaze/syscallent.h b/linux/microblaze/syscallent.h index 01573928..627c9048 100644 --- a/linux/microblaze/syscallent.h +++ b/linux/microblaze/syscallent.h @@ -27,7 +27,7 @@ */ [ 0] = { 0, 0, SEN(restart_syscall), "restart_syscall" }, -[ 1] = { 1, TP|SE, SEN(exit), "_exit" }, +[ 1] = { 1, TP|SE, SEN(exit), "exit" }, [ 2] = { 0, TP, SEN(fork), "fork" }, [ 3] = { 3, TD, SEN(read), "read" }, [ 4] = { 3, TD, SEN(write), "write" }, diff --git a/linux/sh/syscallent.h b/linux/sh/syscallent.h index e85d435f..26da8016 100644 --- a/linux/sh/syscallent.h +++ b/linux/sh/syscallent.h @@ -29,7 +29,7 @@ */ [ 0] = { 0, 0, SEN(restart_syscall), "restart_syscall" }, -[ 1] = { 1, TP|SE, SEN(exit), "_exit" }, +[ 1] = { 1, TP|SE, SEN(exit), "exit" }, [ 2] = { 0, TP, SEN(fork), "fork" }, [ 3] = { 3, TD, SEN(read), "read" }, [ 4] = { 3, TD, SEN(write), "write" }, diff --git a/linux/sh64/syscallent.h b/linux/sh64/syscallent.h index ce70f2fd..53f9f171 100644 --- a/linux/sh64/syscallent.h +++ b/linux/sh64/syscallent.h @@ -27,7 +27,7 @@ */ [ 0] = { 0, 0, SEN(setup), "setup" }, -[ 1] = { 1, TP|SE, SEN(exit), "_exit" }, +[ 1] = { 1, TP|SE, SEN(exit), "exit" }, [ 2] = { 0, TP, SEN(fork), "fork" }, [ 3] = { 3, TD, SEN(read), "read" }, [ 4] = { 3, TD, SEN(write), "write" }, diff --git a/linux/x32/syscallent.h b/linux/x32/syscallent.h index 492b4d1e..ecd2ccee 100644 --- a/linux/x32/syscallent.h +++ b/linux/x32/syscallent.h @@ -58,7 +58,7 @@ [ 57] = { 0, TP, SEN(fork), "fork" }, [ 58] = { 0, TP, SEN(vfork), "vfork" }, [ 59] = { 3, TF|TP|SE|SI, SEN(printargs), "64:execve" }, -[ 60] = { 1, TP|SE, SEN(exit), "_exit" }, +[ 60] = { 1, TP|SE, SEN(exit), "exit" }, [ 61] = { 4, TP, SEN(wait4), "wait4" }, [ 62] = { 2, TS, SEN(kill), "kill" }, [ 63] = { 1, 0, SEN(uname), "uname" }, diff --git a/linux/x86_64/syscallent.h b/linux/x86_64/syscallent.h index 86846295..1fd47e05 100644 --- a/linux/x86_64/syscallent.h +++ b/linux/x86_64/syscallent.h @@ -58,7 +58,7 @@ [ 57] = { 0, TP, SEN(fork), "fork" }, [ 58] = { 0, TP, SEN(vfork), "vfork" }, [ 59] = { 3, TF|TP|SE|SI, SEN(execve), "execve" }, -[ 60] = { 1, TP|SE, SEN(exit), "_exit" }, +[ 60] = { 1, TP|SE, SEN(exit), "exit" }, [ 61] = { 4, TP, SEN(wait4), "wait4" }, [ 62] = { 2, TS, SEN(kill), "kill" }, [ 63] = { 1, 0, SEN(uname), "uname" }, -- 2.40.0