Merge branch 'makefile' into haiku
[grub2/phcoder.git] / include / grub / mm.h
blob4caf80511d80387e195b2ae7c6db9c7e01a34f3d
1 /* mm.h - prototypes and declarations for memory manager */
2 /*
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2002,2007 Free Software Foundation, Inc.
6 * GRUB is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * GRUB is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef GRUB_MM_H
21 #define GRUB_MM_H 1
23 #include <grub/types.h>
24 #include <grub/symbol.h>
25 #include <config.h>
27 #ifndef NULL
28 # define NULL ((void *) 0)
29 #endif
31 void grub_mm_init_region (void *addr, grub_size_t size);
32 void *EXPORT_FUNC(grub_malloc) (grub_size_t size);
33 void *EXPORT_FUNC(grub_zalloc) (grub_size_t size);
34 void EXPORT_FUNC(grub_free) (void *ptr);
35 void *EXPORT_FUNC(grub_realloc) (void *ptr, grub_size_t size);
36 void *EXPORT_FUNC(grub_memalign) (grub_size_t align, grub_size_t size);
38 /* For debugging. */
39 #if defined(MM_DEBUG) && !defined(GRUB_UTIL)
40 /* Set this variable to 1 when you want to trace all memory function calls. */
41 extern int EXPORT_VAR(grub_mm_debug);
43 void grub_mm_dump_free (void);
44 void grub_mm_dump (unsigned lineno);
46 #define grub_malloc(size) \
47 grub_debug_malloc (__FILE__, __LINE__, size)
49 #define grub_zalloc(size) \
50 grub_debug_zalloc (__FILE__, __LINE__, size)
52 #define grub_realloc(ptr,size) \
53 grub_debug_realloc (__FILE__, __LINE__, ptr, size)
55 #define grub_memalign(align,size) \
56 grub_debug_memalign (__FILE__, __LINE__, align, size)
58 #define grub_free(ptr) \
59 grub_debug_free (__FILE__, __LINE__, ptr)
61 void *EXPORT_FUNC(grub_debug_malloc) (const char *file, int line,
62 grub_size_t size);
63 void *EXPORT_FUNC(grub_debug_zalloc) (const char *file, int line,
64 grub_size_t size);
65 void EXPORT_FUNC(grub_debug_free) (const char *file, int line, void *ptr);
66 void *EXPORT_FUNC(grub_debug_realloc) (const char *file, int line, void *ptr,
67 grub_size_t size);
68 void *EXPORT_FUNC(grub_debug_memalign) (const char *file, int line,
69 grub_size_t align, grub_size_t size);
70 #endif /* MM_DEBUG && ! GRUB_UTIL */
72 #endif /* ! GRUB_MM_H */