summaryrefslogtreecommitdiffstats
path: root/sys/ia64/include
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2002-05-10 07:33:11 +0000
committermarcel <marcel@FreeBSD.org>2002-05-10 07:33:11 +0000
commit58b132b00fd6704e9ecca3a5306224791f07a7cc (patch)
treed1f8973e18ae29366775a2cf14e43f6e87c4dca8 /sys/ia64/include
parentd18fa85a67b3e4d6e41b9c94795de725180f31ce (diff)
downloadFreeBSD-src-58b132b00fd6704e9ecca3a5306224791f07a7cc.zip
FreeBSD-src-58b132b00fd6704e9ecca3a5306224791f07a7cc.tar.gz
Add missing #endif
Diffstat (limited to 'sys/ia64/include')
-rw-r--r--sys/ia64/include/reg.h22
-rw-r--r--sys/ia64/include/stdarg.h2
2 files changed, 20 insertions, 4 deletions
diff --git a/sys/ia64/include/reg.h b/sys/ia64/include/reg.h
index 987d248..ef04a4b 100644
--- a/sys/ia64/include/reg.h
+++ b/sys/ia64/include/reg.h
@@ -32,7 +32,7 @@
#ifndef _IA64_FPREG_DEFINED
struct ia64_fpreg {
- u_int64_t fpr_bits[2];
+ uint64_t fpr_bits[2];
} __attribute__ ((aligned (16)));
#define _IA64_FPREG_DEFINED
@@ -40,7 +40,21 @@ struct ia64_fpreg {
#endif
struct reg {
- u_int64_t r_regs[128];
+ uint64_t r_gr[128];
+ uint64_t r_br[8];
+ uint64_t r_cfm;
+ uint64_t r_ip; /* Bits 0-3 encode the slot number */
+ uint64_t r_pr;
+ uint64_t r_psr; /* User mask */
+ uint64_t r_ar_rsc;
+ uint64_t r_ar_bsp;
+ uint64_t r_ar_bspstore;
+ uint64_t r_ar_rnat;
+ uint64_t r_ar_ccv;
+ uint64_t r_ar_unat;
+ uint64_t r_ar_fpsr;
+ uint64_t r_ar_pfs;
+ uint64_t r_ar_lc;
};
struct fpreg {
@@ -48,8 +62,8 @@ struct fpreg {
};
struct dbreg {
- u_int64_t dbr_data[8];
- u_int64_t dbr_inst[8];
+ uint64_t dbr_data[8];
+ uint64_t dbr_inst[8];
};
#ifdef _KERNEL
diff --git a/sys/ia64/include/stdarg.h b/sys/ia64/include/stdarg.h
index feefccb9..4a0bcf8 100644
--- a/sys/ia64/include/stdarg.h
+++ b/sys/ia64/include/stdarg.h
@@ -53,4 +53,6 @@ typedef _BSD_VA_LIST_ va_list;
#define va_end(ap) \
__builtin_va_end(ap)
+#endif
+
#endif /* !_MACHINE_STDARG_H_ */
OpenPOWER on IntegriCloud