allocf.c: rename mrb_default_alloc to mrb_basic_alloc_func

Along with removing mrb_state first argument from the function. From
mruby 3.2, this function is *not* the default function, but the entry
point that can be redefined for the application. The function in
`src/allocf.c` is the default *implementation* (using malloc / realloc /
free) of the function.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2025-05-09 19:17:13 +09:00
parent 0bdd529430
commit c3cc559dfc
6 changed files with 14 additions and 16 deletions
+3 -3
View File
@@ -41,8 +41,8 @@ mrb_open_core(mrb_allocf f, void *ud)
static const mrb_state mrb_state_zero = { 0 };
mrb_state *mrb;
if (f == NULL) f = mrb_default_allocf;
mrb = (mrb_state*)(f)(NULL, NULL, sizeof(mrb_state), ud);
if (f == NULL) f = mrb_basic_alloc_func;
mrb = (mrb_state*)(f)(NULL, sizeof(mrb_state), ud);
if (mrb == NULL) return NULL;
*mrb = mrb_state_zero;
@@ -59,7 +59,7 @@ mrb_open_core(mrb_allocf f, void *ud)
MRB_API mrb_state*
mrb_open(void)
{
mrb_state *mrb = mrb_open_allocf(mrb_default_allocf, NULL);
mrb_state *mrb = mrb_open_allocf(mrb_basic_alloc_func, NULL);
return mrb;
}