Re: 64bit support
- Posted by DerekParnell (admin) Mar 03, 2009
- 1239 views
Critic said...
I think (in C-like code) this is the current implementation: ...
Actually the current implementation is ...
struct {
void* data;
long length;
long fill;
long refcount;
} *s;
By placing the data element at the front, we can gain a few cycles by not having to add an offet to get to the data pointer.

