Skip to content

Commit

Permalink
gc: implement posix_memalign
Browse files Browse the repository at this point in the history
  • Loading branch information
nvswarren authored and ChrisDodd committed Mar 8, 2024
1 parent da7807d commit ef3b499
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/gc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,12 @@ void *calloc(size_t size, size_t elsize) {
if (rv) memset(rv, 0, size);
return rv;
}
int posix_memalign(void **memptr, size_t alignment, size_t size) throw() {
maybe_initialize_gc();

TRACE_ALLOC(size)
return GC_posix_memalign(memptr, alignment, size);
}

#if HAVE_GC_PRINT_STATS
/* GC_print_stats is not exported as an API symbol and cannot be used on some systems */
Expand Down

0 comments on commit ef3b499

Please sign in to comment.