bartosz.slowinski at gmail.com wrote:
> 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)
'Crash' as in throws an exception?
Daniel