Displaying 1 result from an estimated 1 matches for "slowinski".
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,