mirror of https://github.com/sipwise/kamailio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.5 KiB
102 lines
2.5 KiB
/*
|
|
* Copyright (C) 2015 Daniel-Constantin Mierla (asipto.com)
|
|
*
|
|
* This file is part of Kamailio, a free SIP server.
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#include "../dprint.h"
|
|
|
|
#include "pkg.h"
|
|
|
|
#include "memcore.h"
|
|
|
|
sr_pkg_api_t _pkg_root = {0};
|
|
|
|
/**
|
|
*
|
|
*/
|
|
int pkg_init_api(sr_pkg_api_t *ap)
|
|
{
|
|
memset(&_pkg_root, 0, sizeof(sr_pkg_api_t));
|
|
_pkg_root.mname = ap->mname;
|
|
_pkg_root.mem_pool = ap->mem_pool;
|
|
_pkg_root.mem_block = ap->mem_block;
|
|
_pkg_root.xmalloc = ap->xmalloc;
|
|
_pkg_root.xfree = ap->xfree;
|
|
_pkg_root.xrealloc = ap->xrealloc;
|
|
_pkg_root.xstatus = ap->xstatus;
|
|
_pkg_root.xinfo = ap->xinfo;
|
|
_pkg_root.xavailable = ap->xavailable;
|
|
_pkg_root.xsums = ap->xsums;
|
|
_pkg_root.xdestroy = ap->xdestroy;
|
|
_pkg_root.xmodstats = ap->xmodstats;
|
|
_pkg_root.xfmodstats = ap->xfmodstats;
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
int pkg_init_manager(char *name)
|
|
{
|
|
if(strcmp(name, "fm")==0
|
|
|| strcmp(name, "f_malloc")==0
|
|
|| strcmp(name, "fmalloc")==0) {
|
|
/*fast malloc*/
|
|
return fm_malloc_init_pkg_manager();
|
|
} else if(strcmp(name, "qm")==0
|
|
|| strcmp(name, "q_malloc")==0
|
|
|| strcmp(name, "qmalloc")==0) {
|
|
/*quick malloc*/
|
|
return qm_malloc_init_pkg_manager();
|
|
} else if(strcmp(name, "tlsf")==0
|
|
|| strcmp(name, "tlsf_malloc")==0) {
|
|
/*tlsf malloc*/
|
|
return tlsf_malloc_init_pkg_manager();
|
|
} else if(strcmp(name, "sm")==0) {
|
|
/*system malloc*/
|
|
} else {
|
|
/*custom malloc - module*/
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
void pkg_destroy_manager(void)
|
|
{
|
|
if(_pkg_root.xdestroy) {
|
|
LM_DBG("destroying memory manager: %s\n",
|
|
(_pkg_root.mname)?_pkg_root.mname:"unknown");
|
|
_pkg_root.xdestroy();
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
void pkg_print_manager(void)
|
|
{
|
|
LM_DBG("pkg - using memory manager: %s\n",
|
|
(_pkg_root.mname)?_pkg_root.mname:"unknown");
|
|
}
|