large files (> 4GB) ... when will they be ubiquitous?
- From: phil-news-nospam@xxxxxxxx
- Date: 5 May 2007 20:01:02 GMT
The promise of using symbolic parameters in programs at compile time is
that when data sizes and structures (offsets) change, all that is needed
is to recompile the source to get a new binary that handles these changes.
This promise went unfulfilled when these changes happened with Linux to
support files larger than 2 or 4 GB.
Might it ever happen?
The reason I see for this is that Linux tried to maintain ABI compatibility
with programs that only knew how to handle smaller files. The ABI was not
changed, but instead merely extended. Programs had to be rewritten when
they should have simply been recompiled (if they had been correctly written
in the first place).
A new ABI supporting large files could have coexisted with a compatible ABI.
It would simply have been necessary to tag each process with which ABI it
is working with (default to old, switchable to new, generally during the
dynamic linking phase). Parallel libraries would support each ABI. It can
be almost completely transparent (except when looking closely, such as with
the "ldd" command to see what libraries are linked).
What is discouraging here is that the original promise went unfulfilled.
How can we hope to encourage programmers to follow the practice of properly
symbolizing things like data types, and properly avoiding dependencies, if
there's no real value gained by the practices?
--
|---------------------------------------/----------------------------------|
| Phil Howard KA9WGN (ka9wgn.ham.org) / Do not send to the address below |
| first name lower case at ipal.net / spamtrap-2007-05-05-1449@xxxxxxxx |
|------------------------------------/-------------------------------------|
.
- Follow-Ups:
- Re: large files (> 4GB) ... when will they be ubiquitous?
- From: Mikko Rauhala
- Re: large files (> 4GB) ... when will they be ubiquitous?
- From: David Schwartz
- Re: large files (> 4GB) ... when will they be ubiquitous?
- Prev by Date: detecting no USB device quickly
- Next by Date: Re: large files (> 4GB) ... when will they be ubiquitous?
- Previous by thread: detecting no USB device quickly
- Next by thread: Re: large files (> 4GB) ... when will they be ubiquitous?
- Index(es):
Relevant Pages
|