source: git/omalloc/omOpts.h @ d011a2

spielwiese
Last change on this file since d011a2 was 13fe1b, checked in by Hans Schönemann <hannes@…>, 23 years ago
*hannes: DecAlpha-ccc-port git-svn-id: file:///usr/local/Singular/svn/trunk@5409 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 744 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: omOpts.h,v 1.6 2001-04-30 09:02:09 Singular Exp $
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.