Merge async and sync code paths some more
[deliverable/binutils-gdb.git] / gdb / target.c
index ea541aae4a0ce2eedd7a9256bdf1617f017b07b1..3da984e379077d8a5711a7f0d5f830a7162fd595 100644 (file)
@@ -2233,6 +2233,17 @@ target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
   return (current_target.to_wait) (&current_target, ptid, status, options);
 }
 
+/* See target.h.  */
+
+ptid_t
+default_target_wait (struct target_ops *ops,
+                    ptid_t ptid, struct target_waitstatus *status,
+                    int options)
+{
+  status->kind = TARGET_WAITKIND_IGNORE;
+  return minus_one_ptid;
+}
+
 char *
 target_pid_to_str (ptid_t ptid)
 {
This page took 0.0232 seconds and 4 git commands to generate.