source: git/omalloc/omOpts.h @ 08a955

spielwiese
Last change on this file since 08a955 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: 676 bytes
Line 
1/*******************************************************************
2 *  File:    omOpts.h
3 *  Purpose: declaration of options for omalloc
4 *  Author:  obachman (Olaf Bachmann)
5 *  Created: 11/99
6 *******************************************************************/
7#ifndef OM_OPTS_H
8#define OM_OPTS_H
9
10/* Default values for these options are defined in omDefaultConfig.h */
11struct omOpts_s
12{
13  int MinTrack;
14  int MinCheck;
15  int MaxTrack;
16  int MaxCheck;
17  int Keep;
18  int HowToReportErrors;
19  int MarkAsStatic;
20  unsigned int PagesPerRegion;
21  void (*OutOfMemoryFunc)();
22  void (*MemoryLowFunc)();
23  void (*ErrorHook)();
24};
25extern omOpts_t om_Opts;
26
27#endif /* OM_OPTS_H */
Note: See TracBrowser for help on using the repository browser.