00001 #ifndef pagedef_h 00002 #define pagedef_h 00003 00004 #define MMG_C_VAX_PAGE_SIZE 512 00005 #define MMG_C_ALPHA_MAX_PAGE_SIZE 65536 00006 #define IOC_C_DISK_BLKSIZ 512 00007 #define IOC_M_BLOCK_BYTEMASK 0x1FF 00008 #define IOC_M_BLOCK_BLKNUM 0xFFFFFE00 00009 00010 union _blockdef { 00011 struct { 00012 unsigned ioc_v_block_bytemask : 9; 00013 unsigned ioc_v_block_blknum : 23; 00014 }; 00015 }; 00016 00017 #endif 00018 00019