* target.h (struct target_ops) <to_supports_multi_process>: New
[deliverable/binutils-gdb.git] / gdb / target.c
index b5cad3599a5e32bd580ffd64422b01875fd5305c..0976ad1bf56f4b1ef10bb51deb37159cfebf8662 100644 (file)
@@ -471,6 +471,7 @@ update_current_target (void)
       /* Do not inherit to_read_description.  */
       INHERIT (to_get_ada_task_ptid, t);
       /* Do not inherit to_search_memory.  */
+      INHERIT (to_supports_multi_process, t);
       INHERIT (to_magic, t);
       /* Do not inherit to_memory_map.  */
       /* Do not inherit to_flash_erase.  */
@@ -638,6 +639,9 @@ update_current_target (void)
   de_fault (to_get_ada_task_ptid,
             (ptid_t (*) (long, long))
             default_get_ada_task_ptid);
+  de_fault (to_supports_multi_process,
+           (int (*) (void))
+           return_zero);
 #undef de_fault
 
   /* Finally, position the target-stack beneath the squashed
This page took 0.023714 seconds and 4 git commands to generate.