diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2016-05-30 06:48:22 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2016-05-30 06:48:22 +0000 |
commit | a8362f876c9d1cae44fc72afcc895fae25f190b2 (patch) | |
tree | 9f63bc95c15f519ae02083dd140961e20b06c911 /lib/libc/sys | |
parent | c233936b15f6409cc6a397e57b4fd32a2d3cd319 (diff) |
We no longer have syscalls with multiple return values. Whine about
long long alignment instead.
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/syscall.2 | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/libc/sys/syscall.2 b/lib/libc/sys/syscall.2 index 5fd7b99cf1e..5db349fa51b 100644 --- a/lib/libc/sys/syscall.2 +++ b/lib/libc/sys/syscall.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: syscall.2,v 1.12 2015/09/10 17:55:21 schwarze Exp $ +.\" $OpenBSD: syscall.2,v 1.13 2016/05/30 06:48:21 guenther Exp $ .\" $NetBSD: syscall.2,v 1.4 1995/02/27 12:38:53 cgd Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 @@ -30,7 +30,7 @@ .\" .\" @(#)syscall.2 8.1 (Berkeley) 6/16/93 .\" -.Dd $Mdocdate: September 10 2015 $ +.Dd $Mdocdate: May 30 2016 $ .Dt SYSCALL 2 .Os .Sh NAME @@ -83,6 +83,8 @@ The function first appeared in .Bx 3 . .Sh BUGS -There is no way to simulate system calls that have multiple return values -such as -.Xr pipe 2 . +This would all be easier if the layout of structures with long long +members matched how long long arguments were aligned on the stack +for syscall arguments. +They don't match for some ILP32 archs so explicit padding is necessary +for consistent handling. |