Skip to content

Commit 0ca8a95

Browse files
committed
Target: make the software single step path match assert
Adjust the software single step path to match the assertion in the single step path later.
1 parent f9a13e1 commit 0ca8a95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Target/POSIX/Thread.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ ErrorCode Thread::suspend() {
7676
return kSuccess;
7777
}
7878

79-
#if defined(ARCH_ARM)
79+
#if !(defined(ARCH_X86) || defined(ARCH_X86_64) || defined(ARCH_ARM64))
8080
ErrorCode Thread::step(int signal, Address const &address) {
8181
if (_state == kInvalid || _state == kRunning) {
8282
return kErrorInvalidArgument;

0 commit comments

Comments
 (0)