00001 // -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- 00002 // vim:tabstop=4:shiftwidth=4:expandtab: 00003 00004 /* 00005 * Copyright (C) 2004 Wu Yongwei <adah at users dot sourceforge dot net> 00006 * 00007 * This software is provided 'as-is', without any express or implied 00008 * warranty. In no event will the authors be held liable for any 00009 * damages arising from the use of this software. 00010 * 00011 * Permission is granted to anyone to use this software for any purpose, 00012 * including commercial applications, and to alter it and redistribute 00013 * it freely, subject to the following restrictions: 00014 * 00015 * 1. The origin of this software must not be misrepresented; you must 00016 * not claim that you wrote the original software. If you use this 00017 * software in a product, an acknowledgment in the product 00018 * documentation would be appreciated but is not required. 00019 * 2. Altered source versions must be plainly marked as such, and must 00020 * not be misrepresented as being the original software. 00021 * 3. This notice may not be removed or altered from any source 00022 * distribution. 00023 * 00024 * This file is part of Stones of Nvwa: 00025 * http://sourceforge.net/projects/nvwa 00026 * 00027 */ 00028 00039 #if defined(_MEM_POOL_USE_MALLOC) 00040 #include <stdlib.h> 00041 #else 00042 #include <new> 00043 #endif 00044 00045 #include "mem_pool_base.h" 00046 00047 /* Defines macros to abstract system memory routines */ 00048 # ifdef _MEM_POOL_USE_MALLOC 00049 # define _MEM_POOL_ALLOCATE(_Sz) malloc(_Sz) 00050 # define _MEM_POOL_DEALLOCATE(_Ptr) free(_Ptr) 00051 # else 00052 # define _MEM_POOL_ALLOCATE(_Sz) ::operator new((_Sz), std::nothrow) 00053 # define _MEM_POOL_DEALLOCATE(_Ptr) ::operator delete(_Ptr) 00054 # endif 00055 00056 mem_pool_base::~mem_pool_base() 00057 { 00058 } 00059 00060 void* mem_pool_base::alloc_sys(size_t __size) 00061 { 00062 return _MEM_POOL_ALLOCATE(__size); 00063 } 00064 00065 void mem_pool_base::dealloc_sys(void* __ptr) 00066 { 00067 _MEM_POOL_DEALLOCATE(__ptr); 00068 }
1.5.6