Convert infcalls to thread_fsm mechanism
[deliverable/binutils-gdb.git] / gdb / thread-fsm.c
index 761ad1cb25c1de2a09a1ae2c2697ec464215cf2f..4a27d024a8195971bd22d47117e430ed0f534000 100644 (file)
@@ -95,3 +95,13 @@ thread_fsm_async_reply_reason (struct thread_fsm *self)
 
   return self->ops->async_reply_reason (self);
 }
+
+/* See thread-fsm.h.  */
+
+int
+thread_fsm_should_notify_stop (struct thread_fsm *self)
+{
+  if (self->ops->should_notify_stop != NULL)
+    return self->ops->should_notify_stop (self);
+  return 1;
+}
This page took 0.024438 seconds and 4 git commands to generate.