1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-23 13:02:00 -08:00
emacs/mps/src/ss.h
David Jones 5954d433ed Merging changes from branch mmdevel_restr
Copied from Perforce
 Change: 15475
 ServerID: perforce.ravenbrook.com
1996-04-12 13:55:10 +01:00

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 */