-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathaltdebug.h
29 lines (24 loc) · 957 Bytes
/
altdebug.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/***************************************************************************
*
* Copyright (c) 1997, 1998 Timpanogas Research Group, Inc. All Rights
* Reserved.
*
* AUTHOR : Jeff V. Merkey
* FILE : ALTDEBUG.H
* DESCRIP : Alternate Debugger Interface for MANOS v1.0
* DATE : July 27, 1998
*
*
***************************************************************************/
#include "types.h"
typedef struct _ALT_DEBUGGER {
struct _ALT_DEBUGGER *altDebugNext;
struct _ALT_DEBUGGER *altDebugPrior;
LONG (*AlternateDebugger)(SCREEN *screen, StackFrame *stackFrame,
LONG Exception, LONG processor);
void *ModuleContext;
} ALT_DEBUGGER;
extern LONG AlternateDebuggerRoutine(SCREEN *screen, StackFrame *stackFrame,
LONG Exception, LONG processor);
extern LONG AddAlternateDebugger(ALT_DEBUGGER *Debugger);
extern LONG RemoveAlternateDebugger(ALT_DEBUGGER *Debugger);