http://bugs.winehq.org/show_bug.cgi?id=58084
André Z. nerv@dawncrow.de changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |julliard@winehq.org
--- Comment #3 from André Z. nerv@dawncrow.de --- So according to my calculations this is what happens on a 4k pagesize system with 38 bits address space:
virtual_init: pages_vprot_size = ((size_t)host_addr_space_limit /* 0x7fffff0000 */ >> page_shift /* 12 */ >> pages_vprot_shift /* 20 */) + 1; /* = 0x80 */ size = 2 * view_block_size + pages_vprot_size * sizeof(*pages_vprot); /* = 0x200400 */
alloc_virtual_heap: assert( !(size & host_page_mask) ); /* 0x200400 & 0xfff */ //->boom