]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/target/target.h
Use target_continue{,_no_signal} instead of target_resume
[thirdparty/binutils-gdb.git] / gdb / target / target.h
index 76af732f53660a6386c320e2ba76d50004cafc9d..64ef782d354acb4b5b82430a678b12b378461457 100644 (file)
@@ -64,10 +64,14 @@ extern int target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr,
 
 extern void target_stop_and_wait (ptid_t ptid);
 
-/* Restart a target previously stopped by target_stop_and_wait.
-   No signal is delivered to the target.  This function must be
-   provided by the client.  */
+/* Restart a target previously stopped.  No signal is delivered to the
+   target.  This function must be provided by the client.  */
 
 extern void target_continue_no_signal (ptid_t ptid);
 
+/* Restart a target previously stopped.  SIGNAL is delivered to the
+   target.  This function must be provided by the client.  */
+
+extern void target_continue (ptid_t ptid, enum gdb_signal signal);
+
 #endif /* TARGET_COMMON_H */