Skip to content

Commit

Permalink
Previous commit only worked on P10 but not in P9
Browse files Browse the repository at this point in the history
  • Loading branch information
tinchodias committed Apr 13, 2022
1 parent 094d415 commit 6653608
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion TaskItDebugger/TKTRawProcess.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ TKTRawProcess >> isTerminated [

^suspendedContext isNil or: [
suspendedContext isDead or: [
(suspendedContext method == (Process >> #endProcess))]]
Process
compiledMethodAt: #endProcess
ifPresent: [ :m | suspendedContext method == m ]
ifAbsent: [ false ] ]]

]

{ #category : #accessing }
Expand Down

0 comments on commit 6653608

Please sign in to comment.