by ward@[EMAIL PROTECTED]
(ward mcfarland)
Oct 5, 2006 at 07:56 AM
Charles Turner <vze26m98@[EMAIL PROTECTED]
> wrote:
> Am I correct in thinking that Relative Chains are a bit of overkill if
> what I'm looking for is a simple linked list implementation for numbers
> and strings?
Relative Chains are actually fairly well optimized and easy to use. By
using relative addresses (delta between successive links) they are not
dependent on absolute addresses. This latter is not as much of an issue
on OS X as previously (when each time you load an application it would
load into a different address), since on the same version of OS X, our
code and data areas get assigned the same locations. However, I could
not be certain that the data area addresses would be the same between a
snapshot and a Turnkey, nor between different versions of OS X.