diff options
| author | Sam Leffler <sam@FreeBSD.org> | 2009-07-05 17:45:48 +0000 |
|---|---|---|
| committer | Sam Leffler <sam@FreeBSD.org> | 2009-07-05 17:45:48 +0000 |
| commit | 8c393fd1f0cc514a007104469b11eaeeefb829b6 (patch) | |
| tree | 5014c430476acd9a353d9342a22288dd1b848162 /sys/arm/include/param.h | |
| parent | 559bfa18dce5da2a1ffd664bc16e2c4a6e49d8fc (diff) | |
Notes
Diffstat (limited to 'sys/arm/include/param.h')
| -rw-r--r-- | sys/arm/include/param.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/arm/include/param.h b/sys/arm/include/param.h index 802390bc8f7c..c6801487c462 100644 --- a/sys/arm/include/param.h +++ b/sys/arm/include/param.h @@ -80,6 +80,13 @@ #define ALIGNBYTES _ALIGNBYTES #define ALIGN(p) _ALIGN(p) +/* + * 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 ALIGNED_POINTER(p, t) ((((unsigned)(p)) & (sizeof(t)-1)) == 0) /* * CACHE_LINE_SIZE is the compile-time maximum cache line size for an |
