Commit 57893112 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

ntdll: Fix usage of ContextFlags on Sparc.

parent c7600f8d
......@@ -71,6 +71,8 @@ static inline int dispatch_signal(unsigned int sig)
*/
static void save_context( CONTEXT *context, ucontext_t *ucontext )
{
context->ContextFlags = CONTEXT_CONTROL | CONTEXT_INTEGER;
/* Special registers */
context->psr = ucontext->uc_mcontext.gregs[REG_PSR];
context->pc = ucontext->uc_mcontext.gregs[REG_PC];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment