File: cpl_xmemory.h

package info (click to toggle)
cpl 7.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 14,808 kB
  • sloc: ansic: 132,627; javascript: 6,382; sh: 4,232; makefile: 637
file content (50 lines) | stat: -rw-r--r-- 1,914 bytes parent folder | download | duplicates (2)
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
/*
 * This file is part of the ESO Common Pipeline Library
 * Copyright (C) 2001-2017 European Southern Observatory
 *
 * 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 St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef CPL_XMEMORY_H
#define CPL_XMEMORY_H

/*-----------------------------------------------------------------------------
                                   Includes
 -----------------------------------------------------------------------------*/

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <cpl_macros.h>

/*-----------------------------------------------------------------------------
                               Function prototypes
 -----------------------------------------------------------------------------*/

void * cpl_xmemory_malloc_count(size_t)          CPL_ATTR_MALLOC;
void * cpl_xmemory_calloc_count(size_t, size_t)  CPL_ATTR_CALLOC;
void * cpl_xmemory_realloc_count(void *, size_t) CPL_ATTR_REALLOC;
void   cpl_xmemory_free_count(void *);

void * cpl_xmemory_malloc(size_t)          CPL_ATTR_MALLOC;
void * cpl_xmemory_calloc(size_t, size_t)  CPL_ATTR_CALLOC;
void * cpl_xmemory_realloc(void *, size_t) CPL_ATTR_REALLOC;
void   cpl_xmemory_free(void *);

void cpl_xmemory_status(int);
int  cpl_xmemory_is_empty(int) CPL_ATTR_PURE;

#endif