WSDeallocator (C 関数)

WSTP形式の一つで,void * を引数として取り,メモリデアロケータを実行する void を返還形式として持つ関数に,関数ポインタを説明する.

詳細

  • メモリデアロケータ(解放)関数は,スレッドセーフでなければならない.
  • WSDeallocator()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include <stdlib.h>
#include "wstp.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)
{
    WSENV env;
    WSLINK link;
    WSEnvironmentParameter p;
    int error;

    p = WSNewParameters(WSREVISION, WSAPIREVISION);
    if(p == (WSEnvironmentParameter)0)
    { /* Unable to initialize a parameters object */ }

    WSSetAllocParameter(p, AppAllocator, AppDeallocator);

    env = WSInitialize(p);
    if(env == (WSENV)0)
    { /* unable to initialize the WSTP environment */ }

    WSReleaseParameters(p);

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

    /* ... */

    WSClose(link);
    WSDeinitialize(env);

    return 0;
}