home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / modu1096.zip / GPMsym / stackunwind.def < prev    next >
Text File  |  1996-08-29  |  1KB  |  24 lines

  1. (****************************************************************)
  2. (*                                                              *)
  3. (*         Gardens Point Modula-2 Library Definition            *)
  4. (*                                                              *)
  5. (*                                                              *)
  6. (*     (c) Copyright 1996 Faculty of Information Technology     *)
  7. (*              Queensland University of Technology             *)
  8. (*                                                              *)
  9. (*     Permission is granted to use, copy and change this       *)
  10. (*     program as long as the copyright message is left intact  *)
  11. (*                                                              *)
  12. (****************************************************************)
  13.  
  14. (*
  15.  *  This module gives access to the run-time stack dump procedure
  16.  *  The parameter fp must be a valid frame pointer
  17.  *)
  18. DEFINITION MODULE StackUnwind;
  19.  
  20.   TYPE StackFPtr;
  21.   PROCEDURE Unwind(fp : StackFPtr);
  22.  
  23. END StackUnwind.
  24.