-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdebkern.h
33 lines (29 loc) · 1.2 KB
/
debkern.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
30
31
32
33
/***************************************************************************
*
* Copyright (c) 1997, 1998 Timpanogas Research Group, Inc. All Rights
* Reserved.
*
* AUTHOR : Jeff V. Merkey
* FILE : DEBKERN.H
* DESCRIP : Multi-Processing Debugger Command Library for MANOS v1.0
* DATE : September 7, 1998
*
*
***************************************************************************/
#include "types.h"
extern LONG displaySyncHelp(SCREEN *screen, BYTE *commandLine, DEBUGGER_PARSER *parser);
extern LONG displaySema(SCREEN *screen, BYTE *commandLine,
StackFrame *stackFrame, LONG Exception,
DEBUGGER_PARSER *parser);
extern LONG displayMutex(SCREEN *screen, BYTE *commandLine,
StackFrame *stackFrame, LONG Exception,
DEBUGGER_PARSER *parser);
extern LONG displayRMutex(SCREEN *screen, BYTE *commandLine,
StackFrame *stackFrame, LONG Exception,
DEBUGGER_PARSER *parser);
extern LONG displayRWLock(SCREEN *screen, BYTE *commandLine,
StackFrame *stackFrame, LONG Exception,
DEBUGGER_PARSER *parser);
extern LONG displaySpin(SCREEN *screen, BYTE *commandLine,
StackFrame *stackFrame, LONG Exception,
DEBUGGER_PARSER *parser);