spielwiese
Last change
on this file since 105efec was
105efec,
checked in by Hans Schönemann <hannes@…>, 25 years ago
|
* hannes: MTRACK fixes
git-svn-id: file:///usr/local/Singular/svn/trunk@2962 2c84dea3-7e68-4137-9b89-c4e89433aadc
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Line | |
---|
1 | #ifndef MMBT_H |
---|
2 | #define MMBT_H |
---|
3 | /**************************************** |
---|
4 | * Computer Algebra System SINGULAR * |
---|
5 | ****************************************/ |
---|
6 | /* $Id: mmbt.h,v 1.2 1999-03-19 16:00:05 Singular 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 | #ifndef __OPTIMIZE__ |
---|
18 | /* does only work in debug mode: |
---|
19 | * requires that -fomit-frame-pointer is not given |
---|
20 | */ |
---|
21 | #if defined(linux) && defined(__i386__) |
---|
22 | |
---|
23 | int mmTrackInit (); /* init. of global variables */ |
---|
24 | void mmTrack (unsigned long *bt_stack); /* store the current stack into bt_stack */ |
---|
25 | |
---|
26 | void mmP2cNameInit(); /* init. of PC -> Name resolution */ |
---|
27 | char * mmP2cName(unsigned long p); /* PC -> Name resolution */ |
---|
28 | void mmPrintStack(unsigned long *bt_stack); /* print stack */ |
---|
29 | |
---|
30 | #endif /* linux, i386 */ |
---|
31 | #endif /* not optimize */ |
---|
32 | #endif /* MTRACK */ |
---|
33 | |
---|
34 | #endif /* MMBT_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.