/usr/include/code_saturne/bft_mem.h is in code-saturne-include 3.2.1-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 | #ifndef __BFT_MEM_H__
#define __BFT_MEM_H__
/*============================================================================
* Base memory allocation wrappers with optional tracing
*============================================================================*/
/*
This file is part of Code_Saturne, a general-purpose CFD tool.
Copyright (C) 1998-2013 EDF S.A.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program 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 General Public License for more
details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*----------------------------------------------------------------------------*/
#include "cs_defs.h"
/*----------------------------------------------------------------------------*/
/* BFT headers */
#include "bft_error.h"
/*-----------------------------------------------------------------------------*/
BEGIN_C_DECLS
/*============================================================================
* Public types
*============================================================================*/
/*============================================================================
* Public macros
*============================================================================*/
/*
* Allocate memory for _ni items of type _type.
*
* This macro calls bft_mem_malloc(), automatically setting the
* allocated variable name and source file name and line arguments.
*
* parameters:
* _ptr --> pointer to allocated memory.
* _ni <-- number of items.
* _type <-- element type.
*/
#define BFT_MALLOC(_ptr, _ni, _type) \
_ptr = (_type *) bft_mem_malloc(_ni, sizeof(_type), \
#_ptr, __FILE__, __LINE__)
/*
* Reallocate memory for _ni items of type _type.
*
* This macro calls bft_mem_realloc(), automatically setting the
* allocated variable name and source file name and line arguments.
*
* parameters:
* _ptr <-> pointer to allocated memory.
* _ni <-- number of items.
* _type <-- element type.
*/
#define BFT_REALLOC(_ptr, _ni, _type) \
_ptr = (_type *) bft_mem_realloc(_ptr, _ni, sizeof(_type), \
#_ptr, __FILE__, __LINE__)
/*
* Free allocated memory.
*
* This macro calls bft_mem_free(), automatically setting the
* allocated variable name and source file name and line arguments.
*
* The freed pointer is set to NULL to avoid accidental reuse.
*
* parameters:
* _ptr <-> pointer to allocated memory.
*/
#ifdef __cplusplus /* avoid casting from void for C++ */
#define BFT_FREE(_ptr) \
bft_mem_free(_ptr, #_ptr, __FILE__, __LINE__), _ptr = NULL
#else
#define BFT_FREE(_ptr) \
_ptr = bft_mem_free(_ptr, #_ptr, __FILE__, __LINE__)
#endif /* __cplusplus */
/*
* Allocate aligned memory for _ni items of type _type.
*
* This macro calls bft_mem_memalign(), automatically setting the
* allocated variable name and source file name and line arguments.
*
* parameters:
* _ptr --> pointer to allocated memory.
* _align <-- alignment.
* _ni <-- number of items.
* _type <-- element type.
*/
#define BFT_MEMALIGN(_ptr, _align, _ni, _type) \
_ptr = (_type *) bft_mem_memalign(_align, _ni, sizeof(_type), \
#_ptr, __FILE__, __LINE__)
/*============================================================================
* Public function prototypes
*============================================================================*/
/*
* Initialize memory handling.
*
* This function should be called before any other bft_mem_...()
* function. To activate memory allocation logging, a logfile
* name should be given as an argument. The resulting file will
* be a regular, local file. If this file cannot be opened for
* some reason, logging is silently de-activated.
*
* parameter:
* log_file_name <-- name of optional log_file (if NULL, no log).
*/
void
bft_mem_init(const char *log_file_name);
/*
* End memory handling.
*
* This function should be called after all other bft_mem_...()
* functions. In case of memory allocation logging, it
* writes final information to the log file and closes is.
*/
void
bft_mem_end(void);
/*
* Initialize memory handling.
*
* This function should be called before any other bft_mem_...()
* function. To activate memory allocation logging, a logfile
* name should be given as an argument. The resulting file will
* be a regular, local file. If this file cannot be opened for
* some reason, logging is silently de-activated.
*
* parameter:
* log_file_name <-- name of optional log_file (if NULL, no log).
*/
/*
* Indicates if bft_mem_...() functions are initialized.
*
* returns:
* 1 if bft_mem_init has been called, 0 otherwise.
*/
int
bft_mem_initialized(void);
/*
* Allocate memory for ni items of size bytes.
*
* This function calls malloc(), but adds tracing capabilities, and
* automatically calls the bft_error() errorhandler if it fails to
* allocate the required memory.
*
* parameters:
* ni <-- number of items.
* size <-- element size.
* var_name <-- allocated variable name string.
* file_name <-- name of calling source file.
* line_num <-- line number in calling source file.
*
* returns:
* pointer to allocated memory.
*/
void *
bft_mem_malloc(size_t ni,
size_t size,
const char *var_name,
const char *file_name,
int line_num);
/*
* Reallocate memory for ni items of size bytes.
*
* This function calls realloc(), but adds tracing capabilities, and
* automatically calls the bft_error() errorhandler if it fails to
* allocate the required memory.
*
* parameters:
* ptr <-> pointer to previous memory location
* (if NULL, bft_alloc() called).
* ni <-- number of items.
* size <-- element size.
* var_name <-- allocated variable name string.
* file_name <-- name of calling source file.
* line_num -> line number in calling source file
*
* returns:
* pointer to allocated memory.
*/
void *
bft_mem_realloc(void *ptr,
size_t ni,
size_t size,
const char *var_name,
const char *file_name,
int line_num);
/*
* Free allocated memory.
*
* This function calls free(), but adds tracing capabilities, and
* automatically calls the bft_error() errorhandler if it fails to
* free the corresponding memory. In case of a NULL pointer argument,
* the function simply returns.
*
* parameters:
* ptr <-> pointer to previous memory location
* (if NULL, bft_alloc() called).
* var_name <-- allocated variable name string.
* file_name <-- name of calling source file.
* line_num <-- line number in calling source file.
*
* returns:
* NULL pointer.
*/
void *
bft_mem_free(void *ptr,
const char *var_name,
const char *file_name,
int line_num);
/*
* Allocate aligned memory for ni elements of size bytes.
*
* This function calls posix_memalign() if available, but adds tracing
* capabilities, and automatically calls the bft_error() errorhandler if
* it fails to allocate the required memory.
*
* The associated function bft_mem_have_memalign() indicates if this
* type of allocation may be used on this system.
*
* parameters:
* alignment <-- alignent.
* ni <-- number of items.
* size <-- element size.
* var_name <-- allocated variable name string.
* file_name <-- name of calling source file.
* line_num <-- line number in calling source file.
*
* returns:
* pointer to allocated memory.
*/
void *
bft_mem_memalign(size_t alignment,
size_t ni,
size_t size,
const char *var_name,
const char *file_name,
int line_num);
/*
* Indicate if a memory aligned allocation variant is available.
*
* If no such function is available, bft_mem_memalign() will always fail.
*
* returns:
* 1 if memory aligned allocation is possible, 0 otherwise.
*/
int
bft_mem_have_memalign(void);
/*
* Return current theoretical dynamic memory allocated.
*
* returns:
* current memory handled through bft_mem_...() (in kB).
*/
size_t
bft_mem_size_current(void);
/*
* Return maximum theoretical dynamic memory allocated.
*
* returns:
* maximum memory handled through bft_mem_...() (in kB).
*/
size_t
bft_mem_size_max(void);
/* Returns the error handler associated with the bft_mem_...() functions.
*
* returns:
* pointer to the error handler function.
*/
bft_error_handler_t *
bft_mem_error_handler_get(void);
/*
* Associates an error handler with the bft_mem_...() functions.
*
* With the default error handler, an error message is output to stderr,
* (after bft_print_flush() is called), and the general error handler used
* by bft_error() is then called (which results in the termination of the
* current process or process group).
*
* parameter:
* handler <-- pointer to the error handler function.
*/
void
bft_mem_error_handler_set(bft_error_handler_t *handler);
/*----------------------------------------------------------------------------*/
END_C_DECLS
#endif /* __BFT_MEM_H__ */
|