Mail Archives: djgpp/1997/11/02/07:26:39
On Thu, 30 Oct 1997, Nate Eldredge wrote:
> Furthermore, I'd guess that on DOS,
> a system without a way to keep the shared libraries loaded into memory,
> you'd get *much* longer load times when the whole C library had to be loaded
> from disk each time you ran a file. A disk cache would help, but how
> much?...
Disk cache is all that you need on DOS. DOS doesn't have a problem of
multiple programs that use the same shared library running at the same
time and exiting asynchronously. So the shared library can be loaded
when the first image that need it is invoked, and unloaded when it
exits.
- Raw text -