Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gleocadie committed Dec 17, 2024
1 parent 4dc45e2 commit 7887b10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ dd_restart_wrapper:
# and rsp, -16 # Make sure the stack is 16-byte aligned

# Mark the execution as resumed
mov qword ptr [rdi + 8], 1
mov qword ptr [rdi + 16], 1

# Restore rdi
mov rdi, qword ptr [rdi + 16]
mov rdi, qword ptr [rdi + 8]

# Epilogue
# leave
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ struct ManagedThreadInfo : public IThreadInfo
std::uintptr_t Flag;
};

WrapperThreadContext _wrapperContext = {0, 0, 1};
WrapperThreadContext _wrapperContext = {0xdeadbeef, 0xdeadbeef, 1};

public:
// should be previous snapshot (missing spanid and stuff)
Expand Down

0 comments on commit 7887b10

Please sign in to comment.