Skip to content
Snippets Groups Projects
Commit 57893112 authored by André Zwing's avatar André Zwing Committed by Alexandre Julliard
Browse files

ntdll: Fix usage of ContextFlags on Sparc.

parent c7600f8d
Branches
Tags
No related merge requests found
......@@ -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];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment