source: git/omalloc/omOpts.c @ f5d2647

spielwiese
Last change on this file since f5d2647 was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • Property mode set to 100644
File size: 656 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/omalloc.h>
9#include <omalloc/omDefaultConfig.h>
10
11omOpts_t om_Opts =
12{
13  OM_DEFAULT_MIN_TRACK,
14  OM_DEFAULT_MIN_CHECK,
15  OM_DEFAULT_MAX_TRACK,
16  OM_DEFAULT_MAX_CHECK,
17  OM_DEFAULT_KEEP,
18  OM_DEFAULT_HOW_TO_REPORT_ERRORS,
19  OM_DEFAULT_MARK_AS_STATIC,
20  OM_DEFAULT_PAGES_PER_REGION,
21  OM_DEFAULT_OUT_OF_MEMORY_FUNC,
22  OM_DEFAULT_MEMORY_LOW_FUNC,
23  OM_DEFAULT_ERROR_HOOK
24};
Note: See TracBrowser for help on using the repository browser.