import gdb-19990422 snapshot
[deliverable/binutils-gdb.git] / gdb / remote-eb.c
index 6fbea888c24114ded245c9c1e95aaf6406ecd4de..d3a3c4169c16cef2afcc134a21b23e7989247914 100644 (file)
@@ -248,7 +248,7 @@ eb_create_inferior (execfile, args, env)
     error ("Can't pass arguments to remote EBMON process");
 
   if (execfile == 0 || exec_bfd == 0)
-    error ("No exec file specified");
+    error ("No executable file specified");
 
   entry_pt = (int) bfd_get_start_address (exec_bfd);
 
@@ -975,7 +975,9 @@ eb_mourn_inferior ()
 /* Define the target subroutine names */
 
 struct target_ops eb_ops ;
-static void init_eb_ops(void)
+
+static void 
+init_eb_ops(void)
 {
   eb_ops.to_shortname =        "amd-eb";
   eb_ops.to_longname =         "Remote serial AMD EBMON target";
@@ -987,9 +989,13 @@ target amd-eb /dev/ttya 9600 demo",
     eb_ops.to_open =   eb_open;
   eb_ops.to_close =    eb_close;
   eb_ops.to_attach =   0;
+  eb_ops.to_post_attach = NULL;
+  eb_ops.to_require_attach = NULL;
   eb_ops.to_detach =   eb_detach;
+  eb_ops.to_require_detach = NULL;
   eb_ops.to_resume =   eb_resume;
   eb_ops.to_wait  =    eb_wait;
+  eb_ops.to_post_wait = NULL;
   eb_ops.to_fetch_registers  =         eb_fetch_register;
   eb_ops.to_store_registers  =         eb_store_register;
   eb_ops.to_prepare_to_store =         eb_prepare_to_store;
@@ -1006,11 +1012,30 @@ target amd-eb /dev/ttya 9600 demo",
   eb_ops.to_load  =    generic_load;   /* load */
   eb_ops.to_lookup_symbol =    0; /* lookup_symbol */
   eb_ops.to_create_inferior =  eb_create_inferior;
+  eb_ops.to_post_startup_inferior = NULL;
+  eb_ops.to_acknowledge_created_inferior = NULL;
+  eb_ops.to_clone_and_follow_inferior = NULL;      
+  eb_ops.to_post_follow_inferior_by_clone = NULL;
+  eb_ops.to_insert_fork_catchpoint = NULL;
+  eb_ops.to_remove_fork_catchpoint = NULL;
+  eb_ops.to_insert_vfork_catchpoint = NULL;
+  eb_ops.to_remove_vfork_catchpoint = NULL;                  
+  eb_ops.to_has_forked = NULL;
+  eb_ops.to_has_vforked = NULL;            
+  eb_ops.to_can_follow_vfork_prior_to_exec = NULL;        
+  eb_ops.to_post_follow_vfork = NULL;
+  eb_ops.to_insert_exec_catchpoint = NULL;
+  eb_ops.to_remove_exec_catchpoint = NULL;
+  eb_ops.to_has_execd = NULL;
+  eb_ops.to_reported_exec_events_per_exec_call = NULL;
+  eb_ops.to_has_exited = NULL;
   eb_ops.to_mourn_inferior =   eb_mourn_inferior;
   eb_ops.to_can_run  =         0;      /* can_run */
   eb_ops.to_notice_signals =           0; /* notice_signals */
   eb_ops.to_thread_alive  =    0; /* thread-alive */
   eb_ops.to_stop  =    0;                      /* to_stop */
+  eb_ops.to_pid_to_exec_file = NULL;
+  eb_ops.to_core_file_to_sym_file = NULL;
   eb_ops.to_stratum =  process_stratum;
   eb_ops.DONT_USE =    0; /* next */
   eb_ops.to_has_all_memory =   1;
This page took 0.02369 seconds and 4 git commands to generate.