int __TBB_internal_posix_memalign(void **memptr, size_t alignment, size_t size)
{
    return scalable_posix_memalign(memptr, alignment, size);
}
예제 #2
0
int __TBB_internal_posix_memalign(void **memptr, size_t alignment, size_t size)
{
    MALLOC_ASSERT( !underRecursiveMallocFlag(), 
                   "posix_memalign not expected to create a cyclic dependency" );
    return scalable_posix_memalign(memptr, alignment, size);
}