Displaying 2 results from an estimated 2 matches for "address_space_limit".
2003 Aug 16
2
Borland C++ Builder 6.0 & Wine
Hi all,
I need to use BCB6 with Wine to develop a software that uses two ocxs
built with MS Visual C++.
I set ole32, oleaut, typelib to native for bcb, else it doesn't start
correclty. After that, BCB start up, I can design the forms, write the
code, but I have two problems that block me:
a) when I press the Execute button, the units are compiled, but the
linker hangs up with all the cpu used
2008 Aug 21
0
Wine memory bug with patch?
I'm assuming from what I've read in the forums that Wine reserves 1GB for Linux and can't allocate more than 3GB for Windows programs without a patch. I replaced
"dlls/ntdll/virtual.c"
# define ADDRESS_SPACE_LIMIT ((void *)0xc0000000) /* top of the total available address space */
# define USER_SPACE_LIMIT ((void *)0x7fff0000) /* top of the user address space */
with
# define ADDRESS_SPACE_LIMIT 0 /* no limit needed on other platforms */
# define USER_SPACE_LIMIT 0 /* no limit needed on other plat...