source: git/omalloc/omOpts.c @ f769719

spielwiese
Last change on this file since f769719 was f769719, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
- we all got rid of makeheader (sorry Hans ;( ) . renamed: om_Alloc.h -> omalloc.h - updated Makefile.am to install the public header files - fixed the VERSION string issue - got rid of the obsolete path stuff (Oleksandr is happier now)
  • Property mode set to 100644
File size: 674 bytes
Line 
1/*******************************************************************
2 *  File:    omStats.c
3 *  Purpose: definitions of stats related stuff
4 *  Author:  obachman (Olaf Bachmann)
5 *  Created: 11/99
6 *  Version: $Id$
7 *******************************************************************/
8
9#include <omalloc/omalloc.h>
10#include <omalloc/omDefaultConfig.h>
11
12omOpts_t om_Opts =
13{
14  OM_DEFAULT_MIN_TRACK,
15  OM_DEFAULT_MIN_CHECK,
16  OM_DEFAULT_MAX_TRACK,
17  OM_DEFAULT_MAX_CHECK,
18  OM_DEFAULT_KEEP,
19  OM_DEFAULT_HOW_TO_REPORT_ERRORS,
20  OM_DEFAULT_MARK_AS_STATIC,
21  OM_DEFAULT_PAGES_PER_REGION,
22  OM_DEFAULT_OUT_OF_MEMORY_FUNC,
23  OM_DEFAULT_MEMORY_LOW_FUNC,
24  OM_DEFAULT_ERROR_HOOK
25};
Note: See TracBrowser for help on using the repository browser.