diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2016-04-20 01:05:18 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2016-04-20 01:08:12 +0000 |
commit | 10c6c3f7b5032ec56d59f5f4781190274ed41ec7 (patch) | |
tree | b7ab24a4e5926f0021b8c2571d2f1df2327a76ce /linux | |
parent | f22db4e75305057a49ee64e509986dc3a76c3336 (diff) | |
download | strace-10c6c3f7b5032ec56d59f5f4781190274ed41ec7.tar.gz |
alpha: fix decoding of shmat syscall
On alpha, shmat syscall is known as osf_shmat.
* linux/alpha/syscallent.h (osf_shmat): Fix sys_flags and sys_func.
Diffstat (limited to 'linux')
-rw-r--r-- | linux/alpha/syscallent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/alpha/syscallent.h b/linux/alpha/syscallent.h index 1bddd2448..69d252aff 100644 --- a/linux/alpha/syscallent.h +++ b/linux/alpha/syscallent.h @@ -212,7 +212,7 @@ [206] = { 3, TI, SEN(semop), "semop" }, [207] = { 1, 0, SEN(printargs), "osf_utsname" }, [208] = { 3, TF, SEN(chown), "lchown" }, -[209] = { 3, TI|TM, SEN(printargs), "osf_shmat" }, +[209] = { 3, TI|TM|SI, SEN(shmat), "osf_shmat" }, [210] = { 3, TI, SEN(shmctl), "shmctl" }, [211] = { 1, TI|TM|SI, SEN(shmdt), "shmdt" }, [212] = { 3, TI, SEN(shmget), "shmget" }, |