Re: Memory issue
On Aug 11, 12:37 pm, "Balog Pal" <p...@lib.hu> wrote:
"Alf P. Steinbach"
Fighting memory-exhaustion is IME an lost battle on win, at
least it was a few years ago. You lauunch 'the elephant'
(stress application from sdk) and everything around you
srashes, while the rest is there unusable, as dialogs pop up
with broken text, ill buttons, etc.
Is this a problem with Windows, per se, or with the majority of
Windows applications. Be it Windows or Unix, most applications
don't handle out of memory conditions gracefully---they crash,
or if they manage to avoid crashing, they are missing some vital
resources (like the text for a button).
In MFC app, I abandoned hope of recovery from memory error --
no matter what I did in my part, there were always portions of
the lib that failed, also, not using any memory on teardown is
too tricky. (and as mentioned, GUI tends to break...)
If the whole mem management would be done at a single place,
it could hibernate the process until memory appears, but it is
not the case, different libs use a mix of new, malloc in
language, a couple of WIN32 API's, and later some COM
interfaces too.
I've seen this on at least one Windows machine (many years back,
Windows NT professional, IIRC). Out of memory caused a dialog
box to pop up, asking you to kill other applications; when you
clicked to clear it, it retried the allocation. And popped up
the dialog again if the allocation failed.
Note that for my applications, this is absolutely unacceptable.
It's better for the application to crash than for it to simply
hibernate seconds, minutes, days...
AFAIK it's quite difficult to make Windows refrain from
paging.
system/performance/virtual mem-> set to 0. (with some recovery
setting there is ~2M lower limit)
As paging strategy is 'interesting' at least -- the system
writes to swap even when you just use 15% of the RAM, it is
well advised to turn it off having 2G for a simple 'desktop'
use...
This is a problem for some people implementing Windows based
servers.
Server is certainly another kind of thing, it needs much
memory, and swap is beneficial to survive usage bursts, also
here the system have better chance to fair swap use, keeping
preprocessed tables (indexes, compilations) offline until a
next need.
The servers I work on generally run on dedicated machines (often
with no terminal attached), configured with enough memory for
them to run entirely in main memory. If we run out of memory,
it can only be due to a memory leak, so the best reaction is to
terminate the program, and have it start over.
However, a very large allocation might fail.
Or not. Some OS's don't tell you when there's not enough
virtual memory, in which case, the allocation works, but
you get a core dump when you use the memory.
Example?
Linux. google for memory overcommit. (or there is good
description in Exceprional C++ Style). It is exactly as
nasty as it sounds -- OS just gives you address space, and
running out of pages you get shot on ANY access.
Worse: some process gets shot. One person (Gabriel Dos Reis, I
think) told me of a case where the "init" process was killed
(which meant that no one could log in---including the
administrator). It may be just a psychological effect, but I
have the impression that emacs is a favorite target.
There is no way to write a conforming C++ implementatuion for
such environment. :(
At least under Linux, you can turn this behavior off. (Although
from what I understand, it isn't recommended.)
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34