/* EINA - EFL data type library * Copyright (C) 2008 Cedric BAIL * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; * if not, see . */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include "eina_types.h" #include "eina_module.h" #include "eina_mempool.h" #include "eina_private.h" static void * eina_pass_through_malloc(EINA_UNUSED void *data, unsigned int size) { return malloc(size); } static void eina_pass_through_free(EINA_UNUSED void *data, void *ptr) { free(ptr); } static void * eina_pass_through_realloc(EINA_UNUSED void *data, void *ptr, unsigned int size) { return realloc(ptr, size); } static void * eina_pass_through_init(EINA_UNUSED const char *context, EINA_UNUSED const char *option, EINA_UNUSED va_list args) { return (void *)0x1; } static void eina_pass_through_shutdown(EINA_UNUSED void *data) { } static Eina_Mempool_Backend _eina_pass_through_mp_backend = { "pass_through", &eina_pass_through_init, &eina_pass_through_free, &eina_pass_through_malloc, &eina_pass_through_realloc, NULL, NULL, &eina_pass_through_shutdown, NULL }; Eina_Bool pass_through_init(void) { return eina_mempool_register(&_eina_pass_through_mp_backend); } void pass_through_shutdown(void) { eina_mempool_unregister(&_eina_pass_through_mp_backend); } #ifndef EINA_STATIC_BUILD_PASS_THROUGH EINA_MODULE_INIT(pass_through_init); EINA_MODULE_SHUTDOWN(pass_through_shutdown); #endif /* ! EINA_STATIC_BUILD_PASS_THROUGH */