[OT] I wrote a (better?) heap memory manager, is it good for anything?
Mehrdad via Digitalmars-d
digitalmars-d at puremagic.com
Mon Aug 11 21:31:58 PDT 2014
On Monday, 11 August 2014 at 23:10:14 UTC, Klaus wrote:
> Those functions are part of the memory manager (MM). Some MM
> have higly optimized memory copy operation (i.e realloc: if the
> source is overlapped with the dest...using SSE or MMX
> registers... etc).
Hmm I don't get what they have to do with the memory manager. The
memory manager is responsible for allocating the blocks, it
doesn't actually alter the blocks (or ever need to) in any way...
it's just bookkeeping. memcpy is pretty independent of the memory
manager.
More information about the Digitalmars-d
mailing list