mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-23 13:02:00 -08:00
36 lines
856 B
C
36 lines
856 B
C
/* impl.h.ss
|
|
* STACK SCANNING
|
|
*
|
|
* $HopeName: MMsrc!ss.h(MMdevel_restr.2) $
|
|
*
|
|
* Copyright (C) 1995 Harlequin Group, all rights reserved
|
|
*
|
|
* Provides a function for scanning the stack and registers
|
|
*
|
|
*/
|
|
|
|
#ifndef ss_h
|
|
#define ss_h
|
|
|
|
#include "mpm.h"
|
|
|
|
|
|
/* == StackScan ==
|
|
*
|
|
* StackScan scans the current stack between the
|
|
* stackBot and the current top of stack. It also fixes
|
|
* any roots which may be in registers.
|
|
*
|
|
* See the specific implementation for the exact registers which
|
|
* are scanned.
|
|
*
|
|
* The word pointed to by stackBot is fixed if the stack
|
|
* is by convention empty, and not fixed if it is full.
|
|
* Where empty means sp points to first free word beyond the top of
|
|
* stack. Full means sp points to the top of stack itself.
|
|
*/
|
|
|
|
extern Res StackScan(ScanState ss, Addr *stackBot);
|
|
|
|
|
|
#endif /* ss_h */
|