lkml.org 
[lkml]   [2008]   [Aug]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
Subject[PATCH 2.6.26 14/25] mdb: Merkey's Kernel Debugger
From
Netware Style Debugger for Linux written by Jeffrey Vernon Merkey

--- linux-2.6.26/debug/mdb-list.h 1969-12-31 17:00:00.000000000 -0700 +++
linux-2.6.26-mdb/debug/mdb-list.h 2008-08-03 12:49:01.000000000 -0600 @@
-0,0 +1,86 @@
+
+/***************************************************************************
+*
+* Copyright (c) 2008 Jeff V. Merkey All Rights Reserved.
+* 1058 East 50 South
+* Lindon, Utah 84042
+* jmerkey@wolfmountaingroup.com
+*
+* This program is free software; you can redistribute it and/or modify it
+* under the terms of the GNU General Public License as published by the
+* Free Software Foundation, version 3.
+*
+* This program is distributed in the hope that it will be useful, but
+* WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +*
General Public License for more details.
+*
+* You are free to modify and re-distribute this program in accordance
+* with the terms specified in the GNU Public License. The copyright +*
contained in this code is required to be present in any derivative +*
works and you are required to provide the source code for this +*
program as part of any commercial or non-commercial distribution. +* You
are required to respect the rights of the Copyright holders +* named
within this code.
+*
+* jmerkey@wolfmountaingroup.com is the official maintainer of
+* this code. You are encouraged to report any bugs, problems, fixes,
+* suggestions, and comments about this software.
+*
+* AUTHOR : Jeff V. Merkey
+* FILE : MDB-LIST.H
+* DESCRIP : Merkey's NetWare Debugger
+* DATE : April 8, 2008
+*
+***************************************************************************/
+
+#ifndef _MDB_LIST
+#define _MDB_LIST
+
+typedef struct _ACCELERATOR
+{
+ struct _ACCELERATOR *accelNext;
+ struct _ACCELERATOR *accelPrior;
+ ULONG (*accelRoutine)(ULONG key, void *p, struct _ACCELERATOR *parser);
+ ULONG (*accelRoutineHelp)(ULONG key, struct _ACCELERATOR *parser); +
ULONG accelFlags;
+ ULONG key;
+ ULONG supervisorCommand;
+ BYTE *shortHelp;
+} ACCELERATOR;
+
+typedef struct _ALT_DEBUGGER
+{
+ struct _ALT_DEBUGGER *altDebugNext;
+ struct _ALT_DEBUGGER *altDebugPrior;
+ int (*AlternateDebugger)(int reason, int error, void *frame); +}
ALT_DEBUGGER;
+
+extern int AlternateDebuggerRoutine(int reason, int error, void *frame);
+extern ULONG AddAlternateDebugger(ALT_DEBUGGER *Debugger);
+extern ULONG RemoveAlternateDebugger(ALT_DEBUGGER *Debugger);
+
+typedef struct _DEBUGGER_PARSER {
+ struct _DEBUGGER_PARSER *debugNext;
+ struct _DEBUGGER_PARSER *debugPrior;
+ ULONG (*DebugCommandParser)(BYTE *commandLine,
+ StackFrame *stackFrame, ULONG Exception,
+ struct _DEBUGGER_PARSER *parser);
+ ULONG (*DebugCommandParserHelp)(BYTE *commandLine,
+ struct _DEBUGGER_PARSER *parser);
+ ULONG parserFlags;
+ BYTE *debugCommandName;
+ ULONG debugCommandNameLength;
+ ULONG supervisorCommand;
+ BYTE *shortHelp;
+ ULONG controlTransfer;
+} DEBUGGER_PARSER;
+
+extern ULONG DebuggerParserRoutine(BYTE *command, BYTE *commandLine, +
StackFrame *stackFrame, ULONG Exception);
+extern ULONG DebuggerParserHelpRoutine(BYTE *command, BYTE *commandLine);
+extern ULONG AddDebuggerCommandParser(DEBUGGER_PARSER *parser);
+extern ULONG RemoveDebuggerCommandParser(DEBUGGER_PARSER *parser); +
+#endif
+


By making a contribution to this project, I certify that the contribution
was created in whole or in part by me and I have the right to submit it
under the open source license indicated in the file

Jeffrey Vernon Merkey







\
 
 \ /
  Last update: 2008-08-04 04:37    [W:0.029 / U:0.092 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site