Changes between Version 1 and Version 2 of Ticket #57630, comment 8


Ignore:
Timestamp:
Nov 21, 2018, 5:07:14 PM (5 years ago)
Author:
kencu (Ken)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #57630, comment 8

    v1 v2  
    33I like your extra bits. I think we can massage a bit more and find a way to find something acceptible. If alignment is <= 16 we can just use malloc, as macos guarantees 16 byte alignment at all times. That will likely save a few K of memory.
    44
    5 there.is a very complete replacement available called dlmalloc <ftp://g.oswego.edu/pub/misc/malloc.c> with a very liberal license. I wasn't clear how to make it only cough up posix_memalign without all the other memory functions trampling us. I was looking at that one if we could use it.
     5There is a very complete replacement available called dlmalloc <ftp://g.oswego.edu/pub/misc/malloc.c> with a very liberal license. I wasn't clear how to make it only cough up posix_memalign without all the other memory functions trampling us. I was looking at that one if we could use it.
    66
    77For blosc, it turns out the author has previously supported macs < 10.6 in the code; he's just recently added a new benchmark.c that doesn't . You can skip the build of benchmark.c by turning off tests. Then you have what we had before. My PR does that. So you can use that right now if you want...