Yet another weakly defined bug report

Simon Marlow simonmar@microsoft.com
Fri, 14 Feb 2003 12:59:54 -0000


> > These things are always tricky to understand, which is why=20
> I recommend
> > not using lazy I/O.  File reading is not a pure operation:=20
> running out
> > of file descriptors is a good counter-example.
>=20
> Without saying wether I agree with lazy I/O or not, I suggest that
> this particular problem may also be due to the runtime implementation:
> If one tries to open  a new file but the file descriptors are=20
> exhausted,
> the runtime system should first trigger a full GC because that might
> free up some descriptors -- but maybe GHC is already doing this?

GHC could do this, but it doesn't.  Nevertheless, it wouldn't help in
Ketil's example: no amount of GC is going to free up the file
descriptors which are being held on to because the program hasn't
completely evaluated the file contents yet.

Cheers,
	Simon