00001 /* 00002 Copyright 2005-2013 Intel Corporation. All Rights Reserved. 00003 00004 This file is part of Threading Building Blocks. 00005 00006 Threading Building Blocks is free software; you can redistribute it 00007 and/or modify it under the terms of the GNU General Public License 00008 version 2 as published by the Free Software Foundation. 00009 00010 Threading Building Blocks is distributed in the hope that it will be 00011 useful, but WITHOUT ANY WARRANTY; without even the implied warranty 00012 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with Threading Building Blocks; if not, write to the Free Software 00017 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00018 00019 As a special exception, you may use this file as part of a free software 00020 library without restriction. Specifically, if other files instantiate 00021 templates or use macros or inline functions from this file, or you compile 00022 this file and link it with other files to produce an executable, this 00023 file does not by itself cause the resulting executable to be covered by 00024 the GNU General Public License. This exception does not however 00025 invalidate any other reasons why the executable file might be covered by 00026 the GNU General Public License. 00027 */ 00028 00029 /* 00030 Replacing the standard memory allocation routines in Microsoft* C/C++ RTL 00031 (malloc/free, global new/delete, etc.) with the TBB memory allocator. 00032 00033 Include the following header to a source of any binary which is loaded during 00034 application startup 00035 00036 #include "tbb/tbbmalloc_proxy.h" 00037 00038 or add following parameters to the linker options for the binary which is 00039 loaded during application startup. It can be either exe-file or dll. 00040 00041 For win32 00042 tbbmalloc_proxy.lib /INCLUDE:"___TBB_malloc_proxy" 00043 win64 00044 tbbmalloc_proxy.lib /INCLUDE:"__TBB_malloc_proxy" 00045 */ 00046 00047 #ifndef __TBB_tbbmalloc_proxy_H 00048 #define __TBB_tbbmalloc_proxy_H 00049 00050 #if _MSC_VER 00051 00052 #ifdef _DEBUG 00053 #pragma comment(lib, "tbbmalloc_proxy_debug.lib") 00054 #else 00055 #pragma comment(lib, "tbbmalloc_proxy.lib") 00056 #endif 00057 00058 #if defined(_WIN64) 00059 #pragma comment(linker, "/include:__TBB_malloc_proxy") 00060 #else 00061 #pragma comment(linker, "/include:___TBB_malloc_proxy") 00062 #endif 00063 00064 #else 00065 /* Primarily to support MinGW */ 00066 00067 extern "C" void __TBB_malloc_proxy(); 00068 struct __TBB_malloc_proxy_caller { 00069 __TBB_malloc_proxy_caller() { __TBB_malloc_proxy(); } 00070 } volatile __TBB_malloc_proxy_helper_object; 00071 00072 #endif // _MSC_VER 00073 00074 #endif //__TBB_tbbmalloc_proxy_H