import gdb-1999-12-21 snapshot
[deliverable/binutils-gdb.git] / gdb / inftarg.c
index fb31ffb143fa95977d717eaae2a960854c5a9f4c..01c5b474c468849ca7eac3698a12000f32a470ba 100644 (file)
@@ -814,6 +814,14 @@ child_core_file_to_sym_file (core)
 }
 \f
 
+#if !defined(CHILD_PID_TO_STR)
+char *
+child_pid_to_str (pid)
+     int pid;
+{
+  return normal_pid_to_str (pid);
+}
+#endif
 
 static void
 init_child_ops ()
@@ -865,6 +873,7 @@ init_child_ops ()
   child_ops.to_mourn_inferior = child_mourn_inferior;
   child_ops.to_can_run = child_can_run;
   child_ops.to_thread_alive = child_thread_alive;
+  child_ops.to_pid_to_str = child_pid_to_str;
   child_ops.to_stop = child_stop;
   child_ops.to_enable_exception_callback = child_enable_exception_callback;
   child_ops.to_get_current_exception_event = child_get_current_exception_event;
This page took 0.02341 seconds and 4 git commands to generate.