Module: kamailio Branch: master Commit: 5ba10ca7715e91508d747203bec048d0ddc0f902 URL: https://github.com/kamailio/kamailio/commit/5ba10ca7715e91508d747203bec048d0...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2015-09-14T10:22:45+02:00
mem: prototypes of exporting memory managers implemented in core
---
Added: mem/memcore.h
---
Diff: https://github.com/kamailio/kamailio/commit/5ba10ca7715e91508d747203bec048d0... Patch: https://github.com/kamailio/kamailio/commit/5ba10ca7715e91508d747203bec048d0...
---
diff --git a/mem/memcore.h b/mem/memcore.h new file mode 100644 index 0000000..86c30aa --- /dev/null +++ b/mem/memcore.h @@ -0,0 +1,37 @@ +/* + * 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. + */ + + +#ifndef _sr_memcore_h_ +#define _sr_memcore_h_ + +/* memory managers implemented in core */ + +#ifdef F_MALLOC +/* fast malloc - implemented in f_malloc.c */ +int fm_malloc_init_pkg_manager(void); +int fm_malloc_init_shm_manager(void); +#endif + +#ifdef Q_MALLOC +/* quick malloc - implemented in q_malloc.c */ +int qm_malloc_init_pkg_manager(void); +int qm_malloc_init_shm_manager(void); +#endif + +#endif