MLAllocator (C 函数)

MLAllocator 已经被 WSAllocator 所取代.

是一个 MathLink 类型,描述一个指向取 unsigned long 自变量的函数的函数指针,并返回实现内存分配器的 void *.

更多信息

  • 内存分配器函数必需线程安全.
  • 在64位 Windows 平台,分配器把 unsigned __mlint64 作为一个自变量.
  • MLAllocator() 在 MathLink 标头文件 mathlink.h 中被声明.

范例

基本范例  (1)

#include <stdlib.h>
#include "mathlink.h"

/* AppAllocator implements a custom memory allocator */
void * AppAllocator(unsigned long size)
{
    return malloc(size);
}


/* AppDeallocator implements a custom memory deallocator */
void AppDeallocator(void *m)
{
    free(m);
}


int main(int argc, char **argv)
{
    MLENV env;
    MLINK link;
    MLParameters p;
    int error;

    MLSetAllocParameter((char *)p, AppAllocator, AppDeallocator);

    env = MLInitialize((char *)p);
    if(env == (MLENV)0)
        { /* unable to initialize the MathLink environment */ }

    link = MLOpenArgcArgv(env, argc, argv, &error);
    if(link == (MLINK)0)
        { /* unable to create the link */ }

    /* ... */

    MLClose(link);
    MLDeinitialize(env);

    return 0;
}