source: git/omalloc/omOpts.c @ 7b05b5

spielwiese
Last change on this file since 7b05b5 was 599326, checked in by Kai Krüger <krueger@…>, 14 years ago
Anne, Kai, Frank: - changes to #include "..." statements to allow cleaner build structure - affected directories: omalloc, kernel, Singular - not yet done: IntergerProgramming git-svn-id: file:///usr/local/Singular/svn/trunk@13032 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 675 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/om_Alloc.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.