Changeset 2c72eb in git
- Timestamp:
- Dec 12, 2000, 4:26:18 PM (22 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- fa2a43417cf3c1cf7a7f1837f8b4ccae9b7112e9
- Parents:
- 185af8e39f0d1bd89bd02a81b0b156f1d7453611
- Location:
- omalloc
- Files:
-
- 15 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
omalloc/Makefile.in
r185af8 r2c72eb 4 4 ### Author: obachman@mathematik.uni-kl.de (Olaf Bachmann) 5 5 ### Created: 11/99 6 ### Version: $Id: Makefile.in,v 1. 5 2000-09-18 09:12:13obachman Exp $6 ### Version: $Id: Makefile.in,v 1.6 2000-12-12 15:26:14 obachman Exp $ 7 7 ################################################################# 8 8 … … 77 77 78 78 HEADERS= \ 79 om Alloc.h omList.homDerivedConfig.h \79 om_Alloc.h omList.h omDerivedConfig.h \ 80 80 omAllocDecl.h omConfig.h omMemOps.h \ 81 81 omDebug.h omOpts.h omInlineDecl.h \ … … 129 129 130 130 omalloc.h: $(HEADERS) 131 $(PERL) makeheader.pl -a om Alloc.h $@131 $(PERL) makeheader.pl -a om_Alloc.h $@ 132 132 133 133 omalloc.o: omalloc.c … … 149 149 # targets to generate omExternalConfig.[c,h] 150 150 # 151 om Alloc.h: omMalloc.h151 om_Alloc.h: omMalloc.h 152 152 153 153 ifdef OM_MALLOC_SOURCE -
omalloc/omAlloc.c
r185af8 r2c72eb 4 4 * Author: obachman@mathematik.uni-kl.de (Olaf Bachmann) 5 5 * Created: 11/99 6 * Version: $Id: omAlloc.c,v 1.1 0 2000-10-27 15:28:49obachman Exp $6 * Version: $Id: omAlloc.c,v 1.11 2000-12-12 15:26:14 obachman Exp $ 7 7 *******************************************************************/ 8 8 #ifndef OM_ALLOC_C 9 9 #define OM_ALLOC_C 10 10 11 #include "om Alloc.h"11 #include "om_Alloc.h" 12 12 /******************************************************************* 13 13 * -
omalloc/omAllocSystem.c
r185af8 r2c72eb 4 4 * Author: obachman@mathematik.uni-kl.de (Olaf Bachmann) 5 5 * Created: 11/99 6 * Version: $Id: omAllocSystem.c,v 1. 6 2000-11-06 11:21:16 pohlExp $6 * Version: $Id: omAllocSystem.c,v 1.7 2000-12-12 15:26:15 obachman Exp $ 7 7 *******************************************************************/ 8 8 #ifndef OM_ALLOC_SYSTEM_C … … 18 18 #include "omDefaultConfig.h" 19 19 #include "omMalloc.h" 20 #include "om Alloc.h"20 #include "om_Alloc.h" 21 21 /* include after omMalloc.h */ 22 22 #include <string.h> -
omalloc/omBin.c
r185af8 r2c72eb 4 4 * Author: obachman (Olaf Bachmann) 5 5 * Created: 11/99 6 * Version: $Id: omBin.c,v 1. 5 2000-10-27 15:28:50obachman Exp $6 * Version: $Id: omBin.c,v 1.6 2000-12-12 15:26:15 obachman Exp $ 7 7 *******************************************************************/ 8 8 9 #include "om Alloc.h"9 #include "om_Alloc.h" 10 10 /* this should go away */ 11 11 -
omalloc/omBinPage.c
r185af8 r2c72eb 4 4 * Author: obachman (Olaf Bachmann) 5 5 * Created: 11/99 6 * Version: $Id: omBinPage.c,v 1. 5 2000-10-27 15:28:50obachman Exp $6 * Version: $Id: omBinPage.c,v 1.6 2000-12-12 15:26:16 obachman Exp $ 7 7 *******************************************************************/ 8 8 #include <limits.h> 9 #include "om Alloc.h"9 #include "om_Alloc.h" 10 10 #include "omDefaultConfig.h" 11 11 -
omalloc/omDebug.c
r185af8 r2c72eb 4 4 * Author: obachman@mathematik.uni-kl.de (Olaf Bachmann) 5 5 * Created: 7/00 6 * Version: $Id: omDebug.c,v 1.1 2 2000-10-04 13:12:29obachman Exp $6 * Version: $Id: omDebug.c,v 1.13 2000-12-12 15:26:16 obachman Exp $ 7 7 *******************************************************************/ 8 8 #include <limits.h> 9 9 #include <string.h> 10 10 #include "omConfig.h" 11 #include "om Alloc.h"11 #include "om_Alloc.h" 12 12 #include "omDebug.h" 13 13 #include "omReturn.h" -
omalloc/omDebugCheck.c
r185af8 r2c72eb 4 4 * Author: obachman@mathematik.uni-kl.de (Olaf Bachmann) 5 5 * Created: 11/99 6 * Version: $Id: omDebugCheck.c,v 1.1 0 2000-10-27 15:28:51obachman Exp $6 * Version: $Id: omDebugCheck.c,v 1.11 2000-12-12 15:26:16 obachman Exp $ 7 7 *******************************************************************/ 8 8 #include <limits.h> 9 9 #include <stdarg.h> 10 10 11 #include "om Alloc.h"11 #include "om_Alloc.h" 12 12 #include "omDebug.h" 13 13 -
omalloc/omDebugTrack.c
r185af8 r2c72eb 4 4 * Author: obachman@mathematik.uni-kl.de (Olaf Bachmann) 5 5 * Created: 11/99 6 * Version: $Id: omDebugTrack.c,v 1.1 1 2000-10-04 13:12:30obachman Exp $6 * Version: $Id: omDebugTrack.c,v 1.12 2000-12-12 15:26:17 obachman Exp $ 7 7 *******************************************************************/ 8 8 #include <limits.h> … … 13 13 #ifdef OM_HAVE_TRACK 14 14 #include "omDefaultConfig.h" 15 #include "om Alloc.h"15 #include "om_Alloc.h" 16 16 17 17 /******************************************************************* … … 726 726 727 727 #ifndef OM_HAVE_TRACK 728 #include "om Alloc.h"728 #include "om_Alloc.h" 729 729 #endif 730 730 -
omalloc/omError.c
r185af8 r2c72eb 4 4 * Author: obachman (Olaf Bachmann) 5 5 * Created: 11/99 6 * Version: $Id: omError.c,v 1. 7 2000-10-04 13:12:30obachman Exp $6 * Version: $Id: omError.c,v 1.8 2000-12-12 15:26:17 obachman Exp $ 7 7 *******************************************************************/ 8 8 9 9 #include <stdarg.h> 10 #include "om Alloc.h"10 #include "om_Alloc.h" 11 11 12 12 omError_t om_ErrorStatus = omError_NoError; -
omalloc/omList.c
r185af8 r2c72eb 4 4 * Author: obachman (Olaf Bachmann) 5 5 * Created: 11/99 6 * Version: $Id: omList.c,v 1. 6 2000-10-04 13:12:31obachman Exp $6 * Version: $Id: omList.c,v 1.7 2000-12-12 15:26:17 obachman Exp $ 7 7 *******************************************************************/ 8 8 #include "omConfig.h" … … 172 172 173 173 #ifndef OM_NDEBUG 174 #include "om Alloc.h"174 #include "om_Alloc.h" 175 175 #include "omDebug.h" 176 176 -
omalloc/omOpts.c
r185af8 r2c72eb 4 4 * Author: obachman (Olaf Bachmann) 5 5 * Created: 11/99 6 * Version: $Id: omOpts.c,v 1. 5 2000-09-25 12:27:43obachman Exp $6 * Version: $Id: omOpts.c,v 1.6 2000-12-12 15:26:17 obachman Exp $ 7 7 *******************************************************************/ 8 8 9 #include "om Alloc.h"9 #include "om_Alloc.h" 10 10 #include "omDefaultConfig.h" 11 11 -
omalloc/omRet2Info.c
r185af8 r2c72eb 4 4 * Author: obachman (Olaf Bachmann) 5 5 * Created: 11/99 6 * Version: $Id: omRet2Info.c,v 1.1 0 2000-11-03 15:47:25obachman Exp $6 * Version: $Id: omRet2Info.c,v 1.11 2000-12-12 15:26:18 obachman Exp $ 7 7 *******************************************************************/ 8 8 #include <stdio.h> … … 43 43 } 44 44 } 45 45 46 46 47 int omBackTrace_2_RetInfo(void** bt, omRetInfo info, int max) … … 75 76 i++; 76 77 } 78 fflush(stdin); 77 79 pipe = popen(command, "r"); 78 80 if (pipe != NULL) -
omalloc/omStats.c
r185af8 r2c72eb 4 4 * Author: obachman (Olaf Bachmann) 5 5 * Created: 11/99 6 * Version: $Id: omStats.c,v 1. 5 2000-11-06 11:21:17 pohlExp $6 * Version: $Id: omStats.c,v 1.6 2000-12-12 15:26:18 obachman Exp $ 7 7 *******************************************************************/ 8 8 #include <unistd.h> … … 11 11 #include "omDefaultConfig.h" 12 12 #include "omMalloc.h" 13 #include "om Alloc.h"13 #include "om_Alloc.h" 14 14 15 15 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/om_Alloc.h
r185af8 r2c72eb 1 1 /******************************************************************* 2 * File: om Alloc.h2 * File: om_Alloc.h 3 3 * Purpose: declaration of public routines for omalloc 4 4 * Author: obachman@mathematik.uni-kl.de (Olaf Bachmann) 5 5 * Created: 11/99 6 * Version: $Id: om Alloc.h,v 1.7 2000-08-24 13:51:23obachman Exp $6 * Version: $Id: om_Alloc.h,v 1.1 2000-12-12 15:26:18 obachman Exp $ 7 7 *******************************************************************/ 8 8 #ifndef OM_ALLOC_H -
omalloc/omtTest.c
r185af8 r2c72eb 5 5 #endif 6 6 7 #include "om Alloc.h"7 #include "om_Alloc.h" 8 8 9 9 omMemCell_t cells[MAX_CELLS]; -
omalloc/omtTestError.c
r185af8 r2c72eb 1 1 #include "omtTest.h" 2 2 #define OM_CHECK 1 3 #include "om Alloc.h"3 #include "om_Alloc.h" 4 4 5 5 struct LongSpec
Note: See TracChangeset
for help on using the changeset viewer.