Mercurial > emacs
changeset 4230:df4d091e603e
(ALIGNED, ROUNDUP): Use `unsigned long int' instead of `unsigned int' for
casting addresses and sizes. It matters on the 64-bit Alpha.
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Thu, 22 Jul 1993 18:59:43 +0000 |
parents | edf8c9e14e02 |
children | 91a883c56382 |
files | src/ralloc.c |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ralloc.c Thu Jul 22 18:55:19 1993 +0000 +++ b/src/ralloc.c Thu Jul 22 18:59:43 1993 +0000 @@ -109,8 +109,9 @@ /* Macros for rounding. Note that rounding to any value is possible by changing the definition of PAGE. */ #define PAGE (getpagesize ()) -#define ALIGNED(addr) (((unsigned int) (addr) & (page_size - 1)) == 0) -#define ROUNDUP(size) (((unsigned int) (size) + page_size - 1) & ~(page_size - 1)) +#define ALIGNED(addr) (((unsigned long int) (addr) & (page_size - 1)) == 0) +#define ROUNDUP(size) (((unsigned long int) (size) + page_size - 1) \ + & ~(page_size - 1)) #define ROUND_TO_PAGE(addr) (addr & (~(page_size - 1))) /* Functions to get and return memory from the system. */