summaryrefslogtreecommitdiff
path: root/linux/microblaze
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2012-03-17 13:23:00 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2012-03-17 13:23:00 +0100
commit31972d52b1059d8faca1c5f417c2db1a90b868ae (patch)
tree8a5b9c440973a7af9185c700171650b10a26bca0 /linux/microblaze
parenta61a72eacb9b6c687937799b933876bb3b397af4 (diff)
downloadstrace-31972d52b1059d8faca1c5f417c2db1a90b868ae.tar.gz
strace-31972d52b1059d8faca1c5f417c2db1a90b868ae.tar.bz2
strace-31972d52b1059d8faca1c5f417c2db1a90b868ae.tar.xz
Remove underscores from a few syscall names which have them
Affected names are "_newselect", "_llseek", "_sysctl". I see no apparent reason why they have leading underscores. Moreover, some arches have underscored names and some have non-underscored ones. This is not consistent. I verified that every architectire I touched did not have a similarly named syscall without underscore, thus this change does not introduce new ambiquities. I left "_exit" untouched for now, but the same points stand for it too: some architectures use "exit" and no one complains. So why many arches are using "_exit"? * linux/*/syscallent.h: Remove underscores from displayed syscall names for _newselect, _llseek, _sysctl. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'linux/microblaze')
-rw-r--r--linux/microblaze/syscallent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/microblaze/syscallent.h b/linux/microblaze/syscallent.h
index 2d11d3c..1ad2e16 100644
--- a/linux/microblaze/syscallent.h
+++ b/linux/microblaze/syscallent.h
@@ -166,7 +166,7 @@
{ 5, 0, sys_afs_syscall, "afs_syscall" }, /* 137 */
{ 1, NF, sys_setfsuid, "setfsuid" }, /* 138 */
{ 1, NF, sys_setfsgid, "setfsgid" }, /* 139 */
- { 5, 0, sys_llseek, "_llseek" }, /* 140 */
+ { 5, 0, sys_llseek, "llseek" }, /* 140 */
{ 3, 0, sys_getdents, "getdents" }, /* 141 */
{ 5, 0, sys_select, "select" }, /* 142 */
{ 2, 0, sys_flock, "flock" }, /* 143 */
@@ -175,7 +175,7 @@
{ 3, 0, sys_writev, "writev" }, /* 146 */
{ 1, 0, sys_getsid, "getsid" }, /* 147 */
{ 1, 0, sys_fdatasync, "fdatasync" }, /* 148 */
- { 1, 0, sys_sysctl, "_sysctl" }, /* 149 */
+ { 1, 0, sys_sysctl, "sysctl" }, /* 149 */
{ 2, 0, sys_mlock, "mlock" }, /* 150 */
{ 2, 0, sys_munlock, "munlock" }, /* 151 */
{ 1, 0, sys_mlockall, "mlockall" }, /* 152 */