source: git/omalloc/omOpts.c @ 5ef600

spielwiese
Last change on this file since 5ef600 was db143c, checked in by Hans Schoenemann <hannes@…>, 5 years ago
integrate xalloc into omalloc (./configure --disable-omalloc)
  • Property mode set to 100644
File size: 668 bytes
Line 
1/*******************************************************************
2 *  File:    omStats.c
3 *  Purpose: definitions of stats related stuff
4 *  Author:  obachman (Olaf Bachmann)
5 *  Created: 11/99
6 *******************************************************************/
7
8#include "omalloc.h"
9#include "omDefaultConfig.h"
10
11#ifdef HAVE_OMALLOC
12
13omOpts_t om_Opts =
14{
15  OM_DEFAULT_MIN_TRACK,
16  OM_DEFAULT_MIN_CHECK,
17  OM_DEFAULT_MAX_TRACK,
18  OM_DEFAULT_MAX_CHECK,
19  OM_DEFAULT_KEEP,
20  OM_DEFAULT_HOW_TO_REPORT_ERRORS,
21  OM_DEFAULT_MARK_AS_STATIC,
22  OM_DEFAULT_PAGES_PER_REGION,
23  OM_DEFAULT_OUT_OF_MEMORY_FUNC,
24  OM_DEFAULT_MEMORY_LOW_FUNC,
25  OM_DEFAULT_ERROR_HOOK
26};
27#endif
Note: See TracBrowser for help on using the repository browser.