import gdb-1999-06-14 snapshot
[deliverable/binutils-gdb.git] / gdb / remote-udi.c
index 5b5ca5ccfaa35efb411ed57e2d63fbd4b85b0fe9..6397bca5d1680950d6b2025759521da63c2d5b22 100644 (file)
@@ -453,13 +453,13 @@ udi_wait (pid, status)
               a whole bunch of output (more than SBUF_MAX, I would
               guess).  It doesn't seem to happen with the simulator.  */
            warning ("UDIGetStdout() failed in udi_wait");
-         fwrite (sbuf, 1, CountDone, gdb_stdout);
+         fwrite (sbuf, 1, CountDone, stdout);
          gdb_flush(gdb_stdout);
          continue;
 
        case UDIStderrReady:
          UDIGetStderr (sbuf, (UDISizeT)SBUF_MAX, &CountDone);
-         fwrite (sbuf, 1, CountDone, gdb_stderr);
+         fwrite (sbuf, 1, CountDone, stderr);
          gdb_flush(gdb_stderr);
          continue;
 
@@ -1299,7 +1299,7 @@ udi_load (args, from_tty)
   /* As a convenience, pick up any symbol info that is in the program
      being loaded.  Note that we assume that the program is the``mainline'';
      if this is not always true, then this code will need to be augmented.  */
-  symbol_file_add (strtok (args, " \t"), from_tty, 0, 1, 0, 0);
+  symbol_file_add (strtok (args, " \t"), from_tty, 0, 1, 0, 0, 0, 0);
 
   /* Getting new symbols may change our opinion about what is
      frameless.  */
@@ -1621,9 +1621,10 @@ service_HIF(msg)
    The RS/6000 doesn't like "extern" followed by "static"; SunOS
    /bin/cc doesn't like "static" twice.  */
 
-struct target_ops udi_ops ;
+struct target_ops udi_ops;
 
-static void init_udi_ops(void)
+static void 
+init_udi_ops(void)
 {
   udi_ops.to_shortname =         "udi";
   udi_ops.to_longname =        "Remote UDI connected TIP";
@@ -1672,7 +1673,7 @@ To connect using a local connection to the \"tip.exe\" program which is\n\
   udi_ops.to_can_run  =        0;      
   udi_ops.to_notice_signals =  0;      
   udi_ops.to_thread_alive  =   0;      
-  udi_ops.to_stop  =         0;                
+  udi_ops.to_stop  =         0;
   udi_ops.to_stratum =         process_stratum;
   udi_ops.DONT_USE =   0;              
   udi_ops.to_has_all_memory =         1;
This page took 0.023752 seconds and 4 git commands to generate.