search for: winepreloadreserv

Displaying 5 results from an estimated 5 matches for "winepreloadreserv".

Did you mean: winepreloadreserve
2006 Apr 14
1
WINEPRELOADRESERVE: how to use ?
...If I change the PE exe range it works static struct wine_preload_info preload_info[] = { { (void *)0x00000000, 0x00110000 }, /* DOS area */ { (void *)0x80000000, 0x01000000 }, /* shared user data + shared heap */ { (void *)0x10000000, 0x00f00000 }, /* PE exe range (may be set with WINEPRELOADRESERVE), defaults to 512mb */ { 0, 0 } /* end of list */ }; My question is the following : Does anyone knows how to use the WINEPRELOADRESERVE (bash variable ?) to avoid recompiling wine ? Thanks.
2005 Mar 21
3
Can't run program; exec-shield or prelink active?
I have a large installer program (~400MB) that fails to run under wine (20050310). It gives me the following: err:virtual:map_image Image was mapped at 0x60640000: standard load address for a Win32 program (0x00400000) not available err:virtual:map_image Do you have exec-shield or prelink active? wine: could not load L"C:\\WebPACK_71_fcfull_i.exe" as Win32 binary The thing is that I
2006 Jun 26
1
memory limit? (adjustable?)
...ed in Borland c++ >> builder): >> >> int *p; >> while(1) { >> p = new int[10000000]; //allocates 40 MB of memory >> } > > We did the same thing on our older wine (20050419) and found that we could > up the amount to very close to 2GB by playing with WINEPRELOADRESERVE. > > - Michael Ost
2012 Jan 01
2
what is the problem and how to fix this?
I have downloaded cod4 multiplayer only.exe file.it is about 2.8 gb.it is a self extracting zip file in exe format.i have extracted cod4 multiplayer from this for 5+ time.but then when i tried to open it again it doesn't start.here is the terminal log "WINEPRELOADRESERVE range 00400000-b1916000 overlaps preloader 7c400000-7c404000 wine: Not enough memory" what is this problem and how to fix it
2006 Jun 14
6
memory limit?
I've got a simple (32bit) windows application (compiled in Borland c++ builder): int *p; while(1) { p = new int[10000000]; //allocates 40 MB of memory } on Windows XP it crashes after 50 iterations (i.e. 2 GB allocated) but on wine it crashes after 30 iterations (1200 MB allocated) is it impossible to use 2gb of memory in wine? why only 1.2GB is available? I've got wine 0.9.13,