diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2011-09-08 03:40:33 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2011-09-08 03:40:33 +0000 |
commit | 211427d868f8aecd29999f2831103f73bfc92516 (patch) | |
tree | 5a25fcd1af5efcfaa5c78baf48489585ce16228e /sys/arch/ia64 | |
parent | 6f53e4ebb844e940e8bd7264ebb259719834ebe2 (diff) |
Provide namespace-safe alignment macros in <machine/_types.h>, with
compat names kept in <machine/param.h>. In <sys/socket.h>, pull
in <sys/_types.h> instead of the namespace polluting <machine/param.h>
and completely eliminate __CMSG_ALIGN, replaced by _ALIGN
ok deraadt@
Diffstat (limited to 'sys/arch/ia64')
-rw-r--r-- | sys/arch/ia64/include/_types.h | 17 | ||||
-rw-r--r-- | sys/arch/ia64/include/param.h | 6 |
2 files changed, 21 insertions, 2 deletions
diff --git a/sys/arch/ia64/include/_types.h b/sys/arch/ia64/include/_types.h index 3eaaa256c7f..c0ac6e5ec6a 100644 --- a/sys/arch/ia64/include/_types.h +++ b/sys/arch/ia64/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.2 2011/09/08 02:47:13 guenther Exp $ */ +/* $OpenBSD: _types.h,v 1.3 2011/09/08 03:40:32 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -41,6 +41,21 @@ typedef struct label_t { } label_t; #endif +/* + * _ALIGN(p) rounds p (pointer or byte index) up to a correctly-aligned + * value for all data types (int, long, ...). The result is an + * unsigned long and must be cast to any desired pointer type. + * + * _ALIGNED_POINTER is a boolean macro that checks whether an address + * is valid to fetch data elements of type t from on this architecture. + * This does not reflect the optimal alignment, just the possibility + * (within reasonable limits). + */ +#define _ALIGNBYTES 15 /* XXX guess/assumption */ +#define _ALIGN(p) (((unsigned long)(p) + _ALIGNBYTES) & ~_ALIGNBYTES) +#define _ALIGNED_POINTER(p,t) 1 + + /* 7.18.1.1 Exact-width integer types */ typedef __signed char __int8_t; typedef unsigned char __uint8_t; diff --git a/sys/arch/ia64/include/param.h b/sys/arch/ia64/include/param.h index cb69567d3b0..b13d6609a53 100644 --- a/sys/arch/ia64/include/param.h +++ b/sys/arch/ia64/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.1 2011/07/04 23:29:08 pirofti Exp $ */ +/* $OpenBSD: param.h,v 1.2 2011/09/08 03:40:32 guenther Exp $ */ /* * Written by Paul Irofti <pirofti@openbsd.org>. Public Domain. @@ -13,4 +13,8 @@ #define MACHINE_ARCH "ia64" #define MID_MACHINE MID_IA64 +#define ALIGNBYTES _ALIGNBYTES +#define ALIGN(p) _ALIGN(p) +#define ALIGNED_POINTER(p,t) _ALIGNED_POINTER(p,t) + #endif /* _IA64_PARAM_H_ */ |