stkframe.h
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)stkframe.h 1.5 99/09/11 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. #ifndef _STKFRAME_H
  25. #define _STKFRAME_H
  26. #if defined (sun) && (defined(SVR4) || defined(__SVR4) || defined(__SVR4__))
  27. # ifdef i386
  28. /*
  29.  * On Solaris 2.1 x86 sys/frame.h is not useful at all
  30.  * On Solaris 2.4 x86 sys/frame.h is buggy (fr_savfp is int!!)
  31.  */
  32. # include <sys/reg.h>
  33. # endif
  34. # include <sys/frame.h>
  35. #elif defined (sun)
  36. # include <machine/frame.h>
  37. #else
  38. /*
  39.  * XXX: I hope this will be useful on other machines (no guarantee)
  40.  * XXX: It is taken from a sun Motorola system, but should also be useful
  41.  * XXX: on a i386.
  42.  * XXX: In general you have to write a sample program, set a breakpoint
  43.  * XXX: on a small function and inspect the stackframe with adb.
  44.  */
  45. struct frame {
  46. struct frame *fr_savfp; /* saved frame pointer */
  47. int fr_savpc; /* saved program counter */
  48. int fr_arg[1]; /* array of arguments */
  49. };
  50. #endif
  51. #endif /* _STKFRAME_H */