source: git/Singular/mmbt.h @ a70441f

spielwiese
Last change on this file since a70441f was 416465, checked in by Olaf Bachmann <obachman@…>, 24 years ago
* bug-fixes from work with Thomas git-svn-id: file:///usr/local/Singular/svn/trunk@3826 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.5 KB
Line 
1#ifndef MMBT_H
2#define MMBT_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/* $Id: mmbt.h,v 1.7 1999-11-15 17:20:23 obachman Exp $ */
7/*
8* ABSTRACT: backtrace: part of memory subsystem (for linux/elf)
9* needed programs: - mprpc to set the variable MPRPC
10*                  - mprdem: must be in the current directory
11*                  - mprnm: must be in thje current directory
12* files: - Singularg: the name of the executable
13*        - nm.log: temp. file for the map address -> name
14*/
15
16#ifdef MTRACK
17/* the maximal level of stacks to remember in debug (MTRACK) mode */
18#define BT_MAXSTACK 10
19
20// #ifndef __OPTIMIZE__
21/* does only work in debug mode:
22* requires that -fomit-frame-pointer is not given
23*/
24#if defined(linux) && defined(__i386__)
25
26int mmTrackInit (); /* init. of global variables */
27void mmTrack (unsigned long *bt_stack); /* store the current stack into bt_stack */
28
29void mmP2cNameInit(); /* init. of PC -> Name resolution */
30char * mmP2cName(unsigned long p); /* PC -> Name resolution */
31void mmPrintStack(FILE *fd, unsigned long *stack, int mm);
32void mmDBPrintStack(FILE *fd, void* memblock, int mm);
33void mmDBPrintStackFrames(FILE *fd, void* memblock, int start, int end);
34void mmPrintStackFrames(FILE *fd, unsigned long *bt_stack, int start, int end, int mm); 
35void mmDBPrintThisStack(FILE *fd, void* memblock, int all, int free);
36#endif /* linux, i386 */
37// #endif /* not optimize */
38#endif /* MTRACK */
39
40#endif /* MMBT_H */
Note: See TracBrowser for help on using the repository browser.