syscall.2: parisc needs care with syscall parameters

On parisc one needs to take care of the 32-bit calling conventions
with 64-bit syscall parameters on a 32-bit kernel. So on parisc we
suffer from the same issues like ARM, PowerPC and Xtensa.

Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Helge Deller 2018-11-06 22:39:59 +01:00 committed by Michael Kerrisk
parent aa2c362324
commit 6f1033653f
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ Care also must be taken so that the split follows endian conventions
(according to the C ABI for the platform). (according to the C ABI for the platform).
.PP .PP
Similar issues can occur on MIPS with the O32 ABI, Similar issues can occur on MIPS with the O32 ABI,
on PowerPC with the 32-bit ABI, and on Xtensa. on PowerPC and parisc with the 32-bit ABI, and on Xtensa.
.\" Mike Frysinger: this issue ends up forcing MIPS .\" Mike Frysinger: this issue ends up forcing MIPS
.\" O32 to take 7 arguments to syscall() .\" O32 to take 7 arguments to syscall()
.PP .PP