diff options
| author | Roland McGrath <roland@redhat.com> | 2010-11-16 01:37:50 -0700 |
|---|---|---|
| committer | Patrick Jacques <kernelzilla@kinetic-computing.com> | 2010-11-16 01:39:05 -0700 |
| commit | d3925c00ca433d765561d26f2ac698b30d9b06f5 (patch) | |
| tree | b0a075fd7333811280cb650e5e9575f263e15062 | |
| parent | 8bd074be560d0cf5987d48ba600ee95c42b49b37 (diff) | |
| download | android_external_strace-d3925c00ca433d765561d26f2ac698b30d9b06f5.tar.gz android_external_strace-d3925c00ca433d765561d26f2ac698b30d9b06f5.tar.bz2 android_external_strace-d3925c00ca433d765561d26f2ac698b30d9b06f5.zip | |
linux/syscallent.h: Fix sys_delete_module arg count.
Change-Id: I15f75d1503d659e282c92404d07d16b678ca1ac1
| -rw-r--r-- | linux/dummy.h | 2 | ||||
| -rw-r--r-- | linux/syscallent.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/linux/dummy.h b/linux/dummy.h index 5178fad4..8cb3adb3 100644 --- a/linux/dummy.h +++ b/linux/dummy.h @@ -54,7 +54,7 @@ #define sys_umount sys_chdir #define sys_swapon sys_chdir #define sys_swapoff sys_chdir -#define sys_delete_module sys_chdir +#define sys_delete_module sys_open #define sys_fchdir sys_close #define sys_setfsuid sys_setuid #define sys_setfsgid sys_setgid diff --git a/linux/syscallent.h b/linux/syscallent.h index fc2fbd4d..db557782 100644 --- a/linux/syscallent.h +++ b/linux/syscallent.h @@ -165,7 +165,7 @@ { 3, TS, sys_sigprocmask, "sigprocmask" }, /* 126 */ { 2, 0, sys_create_module, "create_module" }, /* 127 */ { 3, 0, sys_init_module, "init_module" }, /* 128 */ - { 1, 0, sys_delete_module, "delete_module" }, /* 129 */ + { 2, 0, sys_delete_module, "delete_module" }, /* 129 */ { 1, 0, sys_get_kernel_syms, "get_kernel_syms"}, /* 130 */ { 4, 0, sys_quotactl, "quotactl" }, /* 131 */ { 1, 0, sys_getpgid, "getpgid" }, /* 132 */ |
