]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* remote-nrom.c (nrom_ops): Add value for to_thread_alive,
authorStan Shebs <shebs@codesourcery.com>
Tue, 3 Oct 1995 23:58:49 +0000 (23:58 +0000)
committerStan Shebs <shebs@codesourcery.com>
Tue, 3 Oct 1995 23:58:49 +0000 (23:58 +0000)
add comment naming slots.

gdb/ChangeLog
gdb/remote-nrom.c

index 29840d470ebd5b7251d2653f2be045e6052c5ce1..bb8b9274c9108fca69d92a9457c49fd73dbabd1f 100644 (file)
@@ -1,3 +1,8 @@
+Tue Oct  3 16:54:56 1995  Stan Shebs  <shebs@andros.cygnus.com>
+
+       * remote-nrom.c (nrom_ops): Add value for to_thread_alive,
+       add comment naming slots.
+
 Mon Oct  2 21:45:44 1995  Jeff Law  (law@hurl)
 
        * top.c (build_command_line): Demand arguments for if/while
@@ -79,22 +84,24 @@ Thu Sep 28 14:32:11 1995  steve chamberlain  <sac@slash.cygnus.com>
        own #if tree.
        (hardwire_flush_input): Reset input buffer too.
        * source.c (openp): If WIN32 then open file in binary mode.
-       * terminal.h: Configure IO mechanism using autoconf defines if available and
-       not overriden.
-       * utils.c (quit, pollquit, notice_quit): WIN32 check becomes WINGDB check.
-       * config/arm/arm.mt (TDEPFILES): Add remote-rdp.o
-       * config/arm/tm-arm.h (TARGET_BYTE_ORDER): becomes TARGET_BYTE_ORDER_SELECTABLE.
+       * terminal.h: Configure IO mechanism using autoconf defines if
+       available and not overriden.
+       * utils.c (quit, pollquit, notice_quit): WIN32 check becomes
+       WINGDB check.
+
+       * config/arm/arm.mt (TDEPFILES): Add remote-rdp.o.
+       * config/arm/tm-arm.h (TARGET_BYTE_ORDER): becomes
+       TARGET_BYTE_ORDER_SELECTABLE.
        (ADDR_BITS_REMOVE): New.
        (ORIGINAL_REGISTER_NAMES, ADDITIONAL_REGISTER_NAMES): New.
-       (INST_xx): New
+       (INST_xx): New.
        (FRAME_FIND_SAVED_REGS): Pass the right argument.
        (arm_get_next_pc): Declare.
 
-
 Wed Sep 27 10:14:36 1995  Per Bothner  <bothner@kalessin.cygnus.com>
 
-       * valops.c (search_struct_field):  Also allow "else" as a variant name,
-
+       * valops.c (search_struct_field):  Also allow "else" as a variant
+       name.
        * eval.c (evaluate_struct_tuple):  New function.  Used to evaluate
        structure tuples.  Now also handles Chill variant records.
        (get_label):  New function, used by evaluate_struct_tuple.
index d998481e7294279b6b2c00a8cc1d41498483cc3c..d67791b67bb57184a95094fafbaee9fc5b15fedd 100644 (file)
@@ -271,7 +271,7 @@ nrom_mourn()
 struct target_ops nrom_ops = {
   "nrom",                      /* to_shortname */
   "Remote XDI `NetROM' target",        /* to_longname */
-  "Remote debug using a NetROM over Ethernet",
+  "Remote debug using a NetROM over Ethernet",  /* to_doc */
   nrom_open,                   /* to_open */
   nrom_close,                  /* to_close */
   NULL,                                /* to_attach */
@@ -285,25 +285,26 @@ struct target_ops nrom_ops = {
   NULL,                                /* to_files_info */
   NULL,                                /* to_insert_breakpoint */
   NULL,                                /* to_remove_breakpoint */
-  NULL,
-  NULL,
-  NULL,
-  NULL,
-  NULL,
-  nrom_kill,
-  nrom_load,
-  NULL,
+  NULL,                                /* to_terminal_init */
+  NULL,                                /* to_terminal_inferior */
+  NULL,                                /* to_terminal_ours_for_output */
+  NULL,                                /* to_terminal_ours */
+  NULL,                                /* to_terminal_info */
+  nrom_kill,                   /* to_kill */
+  nrom_load,                   /* to_load */
+  NULL,                                /* to_lookup_symbol */
   NULL,                                /* to_create_inferior */
-  nrom_mourn,
+  nrom_mourn,                  /* to_mourn_inferior */
   NULL,                                /* to_can_run */
   0,                           /* to_notice_signals */
-  0,
+  0,                           /* to_thread_alive */
+  0,                           /* to_stop */
   download_stratum,            /* to_stratum */
   NULL,                                /* to_next */
-  1,
-  1,
-  1,
-  1,
+  1,                           /* to_has_all_memory */
+  1,                           /* to_has_memory */
+  1,                           /* to_has_stack */
+  1,                           /* to_has_registers */
   0,                           /* to_has_execution */
   NULL,                                /* sections */
   NULL,                                /* sections_end */