~drizzle-trunk/drizzle/development

1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
1
/* Copyright (c) 2008 PrimeBase Technologies GmbH, Germany
2
 *
3
 * PrimeBase Media Stream for MySQL
4
 *
5
 * This program is free software; you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License as published by
7
 * the Free Software Foundation; either version 2 of the License, or
8
 * (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
 *
19
 * Original author: Paul McCullagh (H&G2JCtL)
20
 * Continued development: Barry Leslie
21
 *
22
 * 2007-06-15
23
 *
24
 * CORE SYSTEM:
25
 * Memory allocation
26
 *
27
 */
28
29
#ifndef __CSMEMORY_H__
30
#define __CSMEMORY_H__
31
32
#include "CSDefs.h"
33
34
bool cs_init_memory(void);
35
void cs_exit_memory(void);
36
37
void *cs_malloc(size_t size);
38
void *cs_calloc(size_t size);
39
void cs_realloc(void **ptr, size_t size);
40
void cs_free(void *);
41
42
#define cs_memmove(dst, src, size)		memmove(dst, src, size)
43
#define cs_memcpy(dst, src, size)		memcpy(dst, src, size)
44
#define cs_memset(b, v, size)			memset(b, v, size)
45
46
#ifdef DEBUG
47
#define cs_malloc(siz)			cs_mm_malloc(CS_CONTEXT, siz)
48
#define cs_calloc(siz)			cs_mm_calloc(CS_CONTEXT, siz)
49
#define cs_realloc(ptr, siz)	cs_mm_realloc(CS_CONTEXT, ptr, siz)
50
#define cs_free(ptr)			cs_mm_free(ptr)
51
/*
52
#define cs_memmove(dst, src, size)		cs_mm_memmove(dst, src, size)
53
#define cs_memcpy(dst, src, size)		cs_mm_memcpy(dst, src, size)
54
#define cs_memset(b, v, size)			cs_mm_memset(b, v, size)
55
*/
56
57
bool cs_mm_scan_core(void);
58
void cs_mm_memmove(void *block, void *dest, void *source, size_t size);
59
void cs_mm_memcpy(void *block, void *dest, void *source, size_t size);
60
void cs_mm_memset(void *block, void *dest, int value, size_t size);
61
void *cs_mm_malloc(const char *func, const char *file, int line, size_t size);
62
void *cs_mm_calloc(const char *func, const char *file, int line, size_t size);
63
void cs_mm_realloc(const char *func, const char *file, int line, void **ptr, size_t newsize);
64
void cs_mm_free(void *ptr);
65
void cs_mm_pfree(void **ptr);
66
size_t cs_mm_malloc_size(void *ptr);
1548.2.2 by Barry.Leslie at PrimeBase
A lot of minor changes to clean up the code and to get it to build with Drizzle.
67
void cs_mm_print_track(const char *func, const char *file, uint32_t line, void *p, bool inc, uint32_t ref_cnt, int track_me);
68
void cs_mm_track_memory(const char *func, const char *file, uint32_t line, void *p, bool inc, uint32_t ref_cnt, int track_me);
1548.2.1 by Barry.Leslie at PrimeBase
Added the PBMS daemon plugin.
69
#endif
70
71
#endif
72