Changeset be127e in git
- Timestamp:
- Jun 5, 2014, 4:36:56 AM (9 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- cc86dd0d4b6e977765842c9a233c9e76cfedfed7
- Parents:
- c6573ff5338e7b1f606ac98942ea8efabad3e12c
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-06-05 04:36:56+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-06-05 16:47:15+02:00
- Location:
- omalloc
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
omalloc/omAllocEmulate.c
rc6573f rbe127e 8 8 #include <string.h> 9 9 10 #include <omalloc/omMalloc.h>10 #include "omMalloc.h" 11 11 12 12 #ifdef OM_EMULATE_OMALLOC -
omalloc/omAllocSystem.c
rc6573f rbe127e 13 13 14 14 #include "omConfig.h" 15 #include <omalloc/omDefaultConfig.h>16 #include <omalloc/omMalloc.h>17 #include <omalloc/omalloc.h>15 #include "omDefaultConfig.h" 16 #include "omMalloc.h" 17 #include "omalloc.h" 18 18 /* include after omMalloc.h */ 19 19 #include <string.h> -
omalloc/omBin.c
rc6573f rbe127e 6 6 *******************************************************************/ 7 7 8 #include <omalloc/omalloc.h>8 #include "omalloc.h" 9 9 /* this should go away */ 10 10 -
omalloc/omBinPage.c
rc6573f rbe127e 6 6 *******************************************************************/ 7 7 #include <mylimits.h> 8 #include <omalloc/omalloc.h>9 #include <omalloc/omDefaultConfig.h>8 #include "omalloc.h" 9 #include "omDefaultConfig.h" 10 10 11 11 /******************************************************************* … … 477 477 *******************************************************************/ 478 478 #ifndef OM_NDEBUG 479 #include <omalloc/omDebug.h>479 #include "omDebug.h" 480 480 481 481 int omIsKnownMemoryRegion(omBinPageRegion region) -
omalloc/omDebug.c
rc6573f rbe127e 8 8 #include <string.h> 9 9 #include "omConfig.h" 10 #include <omalloc/omalloc.h>11 #include <omalloc/omDebug.h>12 #include <omalloc/omReturn.h>10 #include "omalloc.h" 11 #include "omDebug.h" 12 #include "omReturn.h" 13 13 14 14 #ifndef OM_NDEBUG -
omalloc/omDebugCheck.c
rc6573f rbe127e 8 8 #include <stdarg.h> 9 9 10 #include <omalloc/omalloc.h>11 #include <omalloc/omDebug.h>10 #include "omalloc.h" 11 #include "omDebug.h" 12 12 13 13 #ifndef OM_NDEBUG -
omalloc/omDebugTrack.c
rc6573f rbe127e 8 8 #include <string.h> 9 9 #include "omConfig.h" 10 #include <omalloc/omDerivedConfig.h>10 #include "omDerivedConfig.h" 11 11 12 12 #ifdef OM_HAVE_TRACK 13 #include <omalloc/omDefaultConfig.h>14 #include <omalloc/omalloc.h>13 #include "omDefaultConfig.h" 14 #include "omalloc.h" 15 15 16 16 /******************************************************************* … … 732 732 733 733 #ifndef OM_HAVE_TRACK 734 #include <omalloc/omalloc.h>734 #include "omalloc.h" 735 735 #endif 736 736 -
omalloc/omDefaultConfig.h
rc6573f rbe127e 23 23 ********************************************************************/ 24 24 #include <mylimits.h> 25 #include <omalloc/omConfig.h>25 #include "omConfig.h" 26 26 /* if external config was provided, 'make' makes links from it to omExternalConfig.h */ 27 27 #ifdef OM_HAVE_EXTERNAL_CONFIG_H 28 #include <omalloc/omExternalConfig.h>28 #include "omExternalConfig.h" 29 29 #endif 30 30 -
omalloc/omError.c
rc6573f rbe127e 7 7 8 8 #include <stdarg.h> 9 #include <omalloc/omalloc.h>9 #include "omalloc.h" 10 10 11 11 omError_t om_ErrorStatus = omError_NoError; -
omalloc/omList.c
rc6573f rbe127e 171 171 172 172 #ifndef OM_NDEBUG 173 #include <omalloc/omalloc.h>174 #include <omalloc/omDebug.h>173 #include "omalloc.h" 174 #include "omDebug.h" 175 175 176 176 omError_t _omCheckList(void* list, int next, int level, omError_t report, OM_FLR_DECL) -
omalloc/omMalloc.h
rc6573f rbe127e 8 8 #define OM_MALLOC_H 9 9 10 #include <omalloc/omConfig.h>10 #include "omConfig.h" 11 11 12 12 #ifdef OMALLOC_USES_SYSTEM_MALLOC -
omalloc/omOpts.c
rc6573f rbe127e 6 6 *******************************************************************/ 7 7 8 #include <omalloc/omalloc.h>9 #include <omalloc/omDefaultConfig.h>8 #include "omalloc.h" 9 #include "omDefaultConfig.h" 10 10 11 11 omOpts_t om_Opts = -
omalloc/omStats.c
rc6573f rbe127e 7 7 #include <unistd.h> 8 8 #include "omConfig.h" 9 #include <omalloc/omDefaultConfig.h>10 #include <omalloc/omMalloc.h>11 #include <omalloc/omalloc.h>9 #include "omDefaultConfig.h" 10 #include "omMalloc.h" 11 #include "omalloc.h" 12 12 13 13 omInfo_t om_Info = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; -
omalloc/omTables.c
rc6573f rbe127e 15 15 #include <string.h> 16 16 #include "omConfig.h" 17 #include <omalloc/omDerivedConfig.h>18 #include <omalloc/omStructs.h>19 #include <omalloc/omAllocPrivate.h>17 #include "omDerivedConfig.h" 18 #include "omStructs.h" 19 #include "omAllocPrivate.h" 20 20 21 21 /* Specify the minimal number of blocks which should go into a bin */ -
omalloc/om_Alloc.c
rc6573f rbe127e 8 8 #define OM_ALLOC_C 9 9 10 #include <omalloc/omalloc.h>10 #include "omalloc.h" 11 11 /******************************************************************* 12 12 * -
omalloc/omalloc.c
rc6573f rbe127e 13 13 #define OMALLOC_C 14 14 15 #include <omalloc/omalloc.h>15 #include "omalloc.h" 16 16 17 17 #ifdef OM_MALLOC_MARK_AS_STATIC -
omalloc/omalloc.h
rc6573f rbe127e 28 28 #endif 29 29 30 #include <omalloc/omDerivedConfig.h>31 #include <omalloc/omError.h>32 #include <omalloc/omStructs.h>33 #include <omalloc/omAllocDecl.h>34 #include <omalloc/omInlineDecl.h>35 #include <omalloc/omBin.h>36 #include <omalloc/omMemOps.h>37 #include <omalloc/omList.h>38 #include <omalloc/omGetBackTrace.h>39 #include <omalloc/omRet2Info.h>40 #include <omalloc/omStats.h>41 #include <omalloc/omOpts.h>42 #include <omalloc/omBinPage.h>43 #include <omalloc/omAllocSystem.h>30 #include "omDerivedConfig.h" 31 #include "omError.h" 32 #include "omStructs.h" 33 #include "omAllocDecl.h" 34 #include "omInlineDecl.h" 35 #include "omBin.h" 36 #include "omMemOps.h" 37 #include "omList.h" 38 #include "omGetBackTrace.h" 39 #include "omRet2Info.h" 40 #include "omStats.h" 41 #include "omOpts.h" 42 #include "omBinPage.h" 43 #include "omAllocSystem.h" 44 44 #include <omalloc/omTables.h> 45 #include <omalloc/omAllocPrivate.h>46 #include <omalloc/omDebug.h>47 #include <omalloc/omInline.h>48 #include <omalloc/omAllocFunc.h>45 #include "omAllocPrivate.h" 46 #include "omDebug.h" 47 #include "omInline.h" 48 #include "omAllocFunc.h" 49 49 50 50 #ifdef __cplusplus -
omalloc/omalloc_debug.c
rc6573f rbe127e 6 6 * Created: 11/99 7 7 *******************************************************************/ 8 #include <omalloc/omDefaultConfig.h>8 #include "omDefaultConfig.h" 9 9 10 10 #define OM_TRACK OM_DEFAULT_MIN_TRACK -
omalloc/omtTest.c
rc6573f rbe127e 1 #include <omalloc/omtTest.h>1 #include "omtTest.h" 2 2 3 3 #if CHECK_LEVEL > 0 … … 5 5 #endif 6 6 7 #include <omalloc/omalloc.h>7 #include "omalloc.h" 8 8 9 9 omMemCell_t cells[MAX_CELLS]; -
omalloc/omtTest.h
rc6573f rbe127e 21 21 22 22 23 #include <omalloc/omStructs.h>23 #include "omStructs.h" 24 24 25 25 struct omMemCell_s -
omalloc/omtTestAlloc.c
rc6573f rbe127e 5 5 * Created: 11/99 6 6 *******************************************************************/ 7 #include <omalloc/omtTest.h>7 #include "omtTest.h" 8 8 9 9 #ifdef TEST_CHECK … … 24 24 #endif 25 25 26 #include <omalloc/omalloc.h>26 #include "omalloc.h" 27 27 28 28 #ifndef OM_ALIGNMENT_NEEDS_WORK -
omalloc/omtTestError.c
rc6573f rbe127e 1 #include <omalloc/omtTest.h>1 #include "omtTest.h" 2 2 #define OM_CHECK 1 3 #include <omalloc/omalloc.h>3 #include "omalloc.h" 4 4 5 5 struct LongSpec
Note: See TracChangeset
for help on using the changeset viewer.