Skip to content

Commit

Permalink
gc: implement posix_memalign. (#4508)
Browse files Browse the repository at this point in the history
Co-authored-by: Stephen Warren <[email protected]>
  • Loading branch information
ChrisDodd and nvswarren authored Mar 12, 2024
1 parent 755893e commit ba9a3e0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/gc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,16 @@ 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)
#ifndef __APPLE__
noexcept
#endif
{
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 ba9a3e0

Please sign in to comment.