diff options
author | Gordon Ross <gwr@nexenta.com> | 2015-10-18 13:53:39 -0400 |
---|---|---|
committer | Gordon Ross <gwr@nexenta.com> | 2015-10-18 13:53:39 -0400 |
commit | 61679b0b6826b0ae7e3f751acd91412fcfa45d1e (patch) | |
tree | 488d0b0e5e9bd6ea82936cf9d436f3efa24facc4 /usr/src/cmd | |
parent | 9a686fbc186e8e2a64e9a5094d44c7d6fa0ea167 (diff) | |
download | illumos-joyent-61679b0b6826b0ae7e3f751acd91412fcfa45d1e.tar.gz |
backout 5876 sys/regset.h pollutes name space
backout commit 21227944c2bcc086121a5428f3f9d2496ba646f5.
Diffstat (limited to 'usr/src/cmd')
-rw-r--r-- | usr/src/cmd/csh/i386/signal.c | 3 | ||||
-rw-r--r-- | usr/src/cmd/csh/sparc/signal.c | 3 | ||||
-rw-r--r-- | usr/src/cmd/mdb/intel/mdb/proc_amd64dep.c | 2 | ||||
-rw-r--r-- | usr/src/cmd/mdb/sparc/kmdb/kmdb_makecontext.c | 3 |
4 files changed, 7 insertions, 4 deletions
diff --git a/usr/src/cmd/csh/i386/signal.c b/usr/src/cmd/csh/i386/signal.c index 59b3eb54e4..d023a9bd88 100644 --- a/usr/src/cmd/csh/i386/signal.c +++ b/usr/src/cmd/csh/i386/signal.c @@ -12,6 +12,8 @@ * specifies the terms and conditions for redistribution. */ +#pragma ident "%Z%%M% %I% %E% SMI" + /* * 4.3BSD signal compatibility functions * @@ -26,7 +28,6 @@ #include <sys/types.h> #include <sys/siginfo.h> #include <sys/ucontext.h> -#include <sys/regset.h> #include <signal.h> #include "signal.h" #include <errno.h> diff --git a/usr/src/cmd/csh/sparc/signal.c b/usr/src/cmd/csh/sparc/signal.c index cac56044fa..9502940859 100644 --- a/usr/src/cmd/csh/sparc/signal.c +++ b/usr/src/cmd/csh/sparc/signal.c @@ -12,6 +12,8 @@ * specifies the terms and conditions for redistribution. */ +#pragma ident "%Z%%M% %I% %E% SMI" + /* * 4.3BSD signal compatibility functions * @@ -26,7 +28,6 @@ #include <sys/types.h> #include <sys/siginfo.h> #include <sys/ucontext.h> -#include <sys/regset.h> #include <signal.h> #include "signal.h" #include <errno.h> diff --git a/usr/src/cmd/mdb/intel/mdb/proc_amd64dep.c b/usr/src/cmd/mdb/intel/mdb/proc_amd64dep.c index c11e08ba0d..ed61bade77 100644 --- a/usr/src/cmd/mdb/intel/mdb/proc_amd64dep.c +++ b/usr/src/cmd/mdb/intel/mdb/proc_amd64dep.c @@ -448,7 +448,7 @@ pt_fpregs(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) mdb_tgt_t *t = mdb.m_target; mdb_tgt_tid_t tid; prfpregset_t fprs; - struct _fpchip_state fps; + struct fpchip_state fps; char buf[256]; uint_t top; int i; diff --git a/usr/src/cmd/mdb/sparc/kmdb/kmdb_makecontext.c b/usr/src/cmd/mdb/sparc/kmdb/kmdb_makecontext.c index 0a7f46f5d1..1d3781f1e9 100644 --- a/usr/src/cmd/mdb/sparc/kmdb/kmdb_makecontext.c +++ b/usr/src/cmd/mdb/sparc/kmdb/kmdb_makecontext.c @@ -24,6 +24,8 @@ * Use is subject to license terms. */ +#pragma ident "%Z%%M% %I% %E% SMI" + /* * Context-saving routine used for pipelines. Designed for use only * with kmdb_setcontext, and with the assumption that func() will never @@ -34,7 +36,6 @@ #include <ucontext.h> #include <sys/types.h> #include <sys/stack.h> -#include <sys/regset.h> #include <kmdb/kmdb_context_impl.h> #include <mdb/mdb_kreg.h> |