Preserve the TF (Trap Flag) when continuing from a ptraced suspend.
diff --git a/server/context_sparc.c b/server/context_sparc.c
index bd30922..0e12e72 100644
--- a/server/context_sparc.c
+++ b/server/context_sparc.c
@@ -157,6 +157,12 @@
return (void *)context.pc;
}
+/* determine if we should continue the thread in single-step mode */
+int get_thread_single_step( struct thread *thread )
+{
+ return 0; /* FIXME */
+}
+
/* retrieve the current context of a thread */
DECL_HANDLER(get_thread_context)
{