source: git/omalloc/omOpts.h @ e6262c

spielwiese
Last change on this file since e6262c was 341696, checked in by Hans Schönemann <hannes@…>, 14 years ago
Adding Id property to all files git-svn-id: file:///usr/local/Singular/svn/trunk@12231 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 694 bytes
Line 
1/*******************************************************************
2 *  File:    omOpts.h
3 *  Purpose: declaration of options for omalloc
4 *  Author:  obachman (Olaf Bachmann)
5 *  Created: 11/99
6 *  Version: $Id$
7 *******************************************************************/
8#ifndef OM_OPTS_H
9#define OM_OPTS_H
10
11/* Default values for these options are defined in omDefaultConfig.h */
12struct omOpts_s
13{
14  int MinTrack;
15  int MinCheck;
16  int MaxTrack;
17  int MaxCheck;
18  int Keep;
19  int HowToReportErrors;
20  int MarkAsStatic;
21  unsigned int PagesPerRegion;
22  void (*OutOfMemoryFunc)();
23  void (*MemoryLowFunc)();
24  void (*ErrorHook)();
25};
26extern omOpts_t om_Opts;
27
28#endif /* OM_OPTS_H */
Note: See TracBrowser for help on using the repository browser.