diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2005-11-14 23:50:27 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2005-11-14 23:50:27 +0000 |
commit | 9ab4e89a14040a099a6de5262366458448042416 (patch) | |
tree | 49087cf9daeed1b07980a1a4d2aab55c003f0edb /sys/arch/i386/include/param.h | |
parent | 7aac1b583be8701bb74e6346189f8dae98dbf58c (diff) |
convert and remove the last traces of i386_round_page(),
i386_trunc_page(), i386_btop() and i386_ptob()
Diffstat (limited to 'sys/arch/i386/include/param.h')
-rw-r--r-- | sys/arch/i386/include/param.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/i386/include/param.h b/sys/arch/i386/include/param.h index 001d7ac1e3f..d0dbf627058 100644 --- a/sys/arch/i386/include/param.h +++ b/sys/arch/i386/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.30 2005/07/31 15:31:13 miod Exp $ */ +/* $OpenBSD: param.h,v 1.31 2005/11/14 23:50:26 martin Exp $ */ /* $NetBSD: param.h,v 1.29 1996/03/04 05:04:26 cgd Exp $ */ /*- @@ -148,7 +148,3 @@ #define i386_trunc_pdr(x) ((unsigned)(x) & ~PDOFSET) #define i386_btod(x) ((unsigned)(x) >> PDSHIFT) #define i386_dtob(x) ((unsigned)(x) << PDSHIFT) -#define i386_round_page(x) ((((unsigned)(x)) + PGOFSET) & ~PGOFSET) -#define i386_trunc_page(x) ((unsigned)(x) & ~PGOFSET) -#define i386_btop(x) ((unsigned)(x) >> PGSHIFT) -#define i386_ptob(x) ((unsigned)(x) << PGSHIFT) |