source: git/omalloc/omOpts.h @ 4697a8a

fieker-DuValspielwiese
Last change on this file since 4697a8a was e70e45, checked in by Olaf Bachmann <obachman@…>, 24 years ago
* re-added files git-svn-id: file:///usr/local/Singular/svn/trunk@4521 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 690 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.3 2000-08-14 12:26:48 obachman 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 Keep;
17  int HowToReportErrors;
18  int MarkAsStatic;
19  unsigned int PagesPerRegion;
20  void (*OutOfMemoryFunc)();
21  void (*MemoryLowFunc)();
22};
23extern omOpts_t om_Opts;
24
25#endif /* OM_OPTS_H */
26
Note: See TracBrowser for help on using the repository browser.