spielwiese
Last change
on this file since ccd333 was
ccd333,
checked in by Mohamed Barakat <mohamed.barakat@…>, 12 years ago
|
- seperated public config macros in omalloc from private ones
- deleted OM_PROVIDE_MALLOC and OM_EMULATE_OMALLOC
- protect libpolys/misc/mylimits.h from double-include
- enlarged .gitignore :)
|
-
Property mode set to
100644
|
File size:
756 bytes
|
Line | |
---|
1 | /******************************************************************* |
---|
2 | * File: omMallocSystem.h |
---|
3 | * Purpose: declaration of macros for malloc to be used from the system |
---|
4 | * Author: obachman (Olaf Bachmann) |
---|
5 | * Created: 11/99 |
---|
6 | * Version: $Id$ |
---|
7 | *******************************************************************/ |
---|
8 | #ifndef OM_MALLOC_H |
---|
9 | #define OM_MALLOC_H |
---|
10 | |
---|
11 | #include "config.h" |
---|
12 | |
---|
13 | #ifdef OMALLOC_USES_SYSTEM_MALLOC |
---|
14 | #include "omalloc/omMallocSystem.h" |
---|
15 | #endif |
---|
16 | |
---|
17 | #ifdef OMALLOC_USES_EXTERNAL_MALLOC |
---|
18 | #include EXTERNAL_MALLOC_HEADER |
---|
19 | #endif |
---|
20 | |
---|
21 | #ifdef OMALLOC_USES_PMALLOC |
---|
22 | #include "omalloc/pmalloc.h" |
---|
23 | #endif |
---|
24 | |
---|
25 | #ifdef OMALLOC_USES_GMALLOC |
---|
26 | #include "omalloc/gmalloc.h" |
---|
27 | #endif |
---|
28 | |
---|
29 | #ifdef OMALLOC_USES_DLMALLOC |
---|
30 | #include "omalloc/dlmalloc.h" |
---|
31 | #endif |
---|
32 | |
---|
33 | #endif /* OM_MALLOC_H */ |
---|
34 | |
---|
Note: See
TracBrowser
for help on using the repository browser.