home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / linux / backup / star-1.3.1.tar.gz / star-1.3.1.tar / star-1.3.1 / include / stkframe.h < prev    next >
C/C++ Source or Header  |  2000-11-08  |  2KB  |  67 lines

  1. /* @(#)stkframe.h    1.6 00/11/08 Copyright 1995 J. Schilling */
  2. /*
  3.  * Common definitions for routines that parse the stack frame.
  4.  *
  5.  * This file has to be fixed if you want to port routines which use getfp().
  6.  * Have a look at struct frame below and use it as a sample,
  7.  * the new struct frame must at least contain a member 'fr_savfp'.
  8.  */
  9. /*
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2, or (at your option)
  13.  * any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; see the file COPYING.  If not, write to
  22.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  */
  24.  
  25. #ifndef _STKFRAME_H
  26. #define _STKFRAME_H
  27.  
  28. #if defined (sun) && (defined(SVR4) || defined(__SVR4) || defined(__SVR4__))
  29. #    ifdef    i386
  30.         /*
  31.          * On Solaris 2.1 x86 sys/frame.h is not useful at all
  32.          * On Solaris 2.4 x86 sys/frame.h is buggy (fr_savfp is int!!)
  33.          */
  34. #        include <sys/reg.h>
  35. #    endif
  36. #    include <sys/frame.h>
  37.  
  38. #elif    defined (sun)
  39. #    include <machine/frame.h>
  40. #else
  41.  
  42. #ifdef    __cplusplus
  43. extern "C" {
  44. #endif
  45.  
  46. /*
  47.  * XXX: I hope this will be useful on other machines (no guarantee)
  48.  * XXX: It is taken from a sun Motorola system, but should also be useful
  49.  * XXX: on a i386.
  50.  * XXX: In general you have to write a sample program, set a breakpoint
  51.  * XXX: on a small function and inspect the stackframe with adb.
  52.  */
  53.  
  54. struct frame {
  55.     struct frame    *fr_savfp;    /* saved frame pointer */
  56.     int        fr_savpc;    /* saved program counter */
  57.     int        fr_arg[1];    /* array of arguments */
  58. };
  59.  
  60. #ifdef    __cplusplus
  61. }
  62. #endif
  63.  
  64. #endif
  65.  
  66. #endif    /* _STKFRAME_H */
  67.