diff options
author | J.T. Conklin <jtc@acorntoolworks.com> | 1995-03-15 22:32:57 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@acorntoolworks.com> | 1995-03-15 22:32:57 +0000 |
commit | 4c659894ed8332a2928afaa746542705fe35434b (patch) | |
tree | 06a7dec855dfb7d42e84ae296f4ee2b0d6bc5a11 /gdb/nlm | |
parent | f919f30267396cc5fc3da2ebd164c422b063e77a (diff) | |
download | gdb-4c659894ed8332a2928afaa746542705fe35434b.zip gdb-4c659894ed8332a2928afaa746542705fe35434b.tar.gz gdb-4c659894ed8332a2928afaa746542705fe35434b.tar.bz2 |
Reworded comments. gdbserve.nlm is no longer NetWare/i386 specific.
Diffstat (limited to 'gdb/nlm')
-rw-r--r-- | gdb/nlm/gdbserve.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gdb/nlm/gdbserve.c b/gdb/nlm/gdbserve.c index 4d990d8..1fc1daf 100644 --- a/gdb/nlm/gdbserve.c +++ b/gdb/nlm/gdbserve.c @@ -1,4 +1,4 @@ -/* i386-nlmstub.c -- NLM debugging stub for the i386. +/* gdbserve.c -- NLM debugging stub for Novell NetWare. This is originally based on an m68k software stub written by Glenn Engel at HP, but has changed quite a bit. It was modified for the @@ -6,10 +6,10 @@ NetWare by Ian Lance Taylor, Cygnus Support. This code is intended to produce an NLM (a NetWare Loadable Module) - to run under NetWare on an i386 platform. To create the NLM, - compile this code into an object file using the NLM SDK on any i386 - host, and use the nlmconv program (available in the GNU binutils) - to transform the resulting object file into an NLM. */ + to run under Novell NetWare. To create the NLM, compile this code + into an object file using the NLM SDK on any i386 host, and use the + nlmconv program (available in the GNU binutils) to transform the + resulting object file into an NLM. */ /**************************************************************************** @@ -118,20 +118,20 @@ struct DBG_LoadDefinitionStructure #define LO_AUTO_LOAD 0x0008 /* Loader returned error codes */ -#define LOAD_COULD_NOT_FIND_FILE 1 -#define LOAD_ERROR_READING_FILE 2 -#define LOAD_NOT_NLM_FILE_FORMAT 3 -#define LOAD_WRONG_NLM_FILE_VERSION 4 +#define LOAD_COULD_NOT_FIND_FILE 1 +#define LOAD_ERROR_READING_FILE 2 +#define LOAD_NOT_NLM_FILE_FORMAT 3 +#define LOAD_WRONG_NLM_FILE_VERSION 4 #define LOAD_REENTRANT_INITIALIZE_FAILURE 5 #define LOAD_CAN_NOT_LOAD_MULTIPLE_COPIES 6 -#define LOAD_ALREADY_IN_PROGRESS 7 -#define LOAD_NOT_ENOUGH_MEMORY 8 -#define LOAD_INITIALIZE_FAILURE 9 +#define LOAD_ALREADY_IN_PROGRESS 7 +#define LOAD_NOT_ENOUGH_MEMORY 8 +#define LOAD_INITIALIZE_FAILURE 9 #define LOAD_INCONSISTENT_FILE_FORMAT 10 #define LOAD_CAN_NOT_LOAD_AT_STARTUP 11 #define LOAD_AUTO_LOAD_MODULES_NOT_LOADED 12 -#define LOAD_UNRESOLVED_EXTERNAL 13 -#define LOAD_PUBLIC_ALREADY_DEFINED 14 +#define LOAD_UNRESOLVED_EXTERNAL 13 +#define LOAD_PUBLIC_ALREADY_DEFINED 14 /****************************************************/ /* The main thread ID. */ |