diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2005-11-24 08:16:18 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2005-11-24 08:16:18 +0000 |
| commit | 1a581012df5d5fab92152c370b67fa2884439492 (patch) | |
| tree | 445faca696ac6d659b8269c182aa4f7d1002e73d /sys | |
| parent | 47be1324782cae0023e275aa65c42b78527bb537 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/amd64/amd64/machdep.c | 2 | ||||
| -rw-r--r-- | sys/arm/arm/machdep.c | 2 | ||||
| -rw-r--r-- | sys/i386/i386/machdep.c | 2 | ||||
| -rw-r--r-- | sys/pc98/pc98/machdep.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c index 0ee32f3cce3d..9e8e5a2b0403 100644 --- a/sys/amd64/amd64/machdep.c +++ b/sys/amd64/amd64/machdep.c @@ -343,7 +343,7 @@ int sigreturn(td, uap) struct thread *td; struct sigreturn_args /* { - const __ucontext *sigcntxp; + const struct __ucontext *sigcntxp; } */ *uap; { ucontext_t uc; diff --git a/sys/arm/arm/machdep.c b/sys/arm/arm/machdep.c index 04d3c31468d9..45806ee7f0d9 100644 --- a/sys/arm/arm/machdep.c +++ b/sys/arm/arm/machdep.c @@ -511,7 +511,7 @@ int sigreturn(td, uap) struct thread *td; struct sigreturn_args /* { - const __ucontext *sigcntxp; + const struct __ucontext *sigcntxp; } */ *uap; { struct proc *p = td->td_proc; diff --git a/sys/i386/i386/machdep.c b/sys/i386/i386/machdep.c index bb38901ae56c..19eba7cf3eca 100644 --- a/sys/i386/i386/machdep.c +++ b/sys/i386/i386/machdep.c @@ -911,7 +911,7 @@ int sigreturn(td, uap) struct thread *td; struct sigreturn_args /* { - const __ucontext *sigcntxp; + const struct __ucontext *sigcntxp; } */ *uap; { ucontext_t uc; diff --git a/sys/pc98/pc98/machdep.c b/sys/pc98/pc98/machdep.c index 40c5706bdf6b..4d50d75c0b3f 100644 --- a/sys/pc98/pc98/machdep.c +++ b/sys/pc98/pc98/machdep.c @@ -909,7 +909,7 @@ int sigreturn(td, uap) struct thread *td; struct sigreturn_args /* { - const __ucontext *sigcntxp; + const struct __ucontext *sigcntxp; } */ *uap; { ucontext_t uc; |
