Preserve the TF (Trap Flag) when continuing from a ptraced suspend.
diff --git a/server/context_i386.c b/server/context_i386.c
index 40fc894..4e58973 100644
--- a/server/context_i386.c
+++ b/server/context_i386.c
@@ -474,6 +474,15 @@
return (void *)context.Eip;
}
+/* determine if we should continue the thread in single-step mode */
+int get_thread_single_step( struct thread *thread )
+{
+ CONTEXT context;
+ if (thread->context) return 0; /* don't single-step inside exception event */
+ get_thread_context( thread, CONTEXT_CONTROL, &context );
+ return (context.EFlags & 0x100) != 0;
+}
+
/* retrieve the current context of a thread */
DECL_HANDLER(get_thread_context)
{