boehmgc

Can I use boehmgc in an iPhone application?

I have a C++ application that uses boehmgc, and I was wondering whether Apple "allows" one to include the library in applications submitted to the App Store. Does anyone have any experience with this? ...

How to use asprintf with the Boehm GC?

As far as I can tell, asprintf calls malloc. If I replace malloc with the Boehm GC, a call to asprintf still calls the traditional malloc - at least that's what valgrind is telling me: Here's the malloc macro: #include <stdio.h> #include <string.h> #include <stdlib.h> #include <stdbool.h> #include <gc.h> #define malloc(n) GC_MALLO...