On Thu, 2 Mar 2023 17:43:54 GMT, Afshin Zafari wrote:
>> ### Description
>> The use of `ThreadDeath` is replaced with checking the exception be of type
>> `Error` and the thread is `TERMINATED`.
>>
>>
>> ### Test
>> local and mach5 tier1
>
> Afshin Zafari has updated the pull request increment
On Thu, 2 Mar 2023 17:35:35 GMT, Alan Bateman wrote:
>> I assumed the `ThreadDeath` was there to catch `Thread.stop()` calls and
>> just ignore them. So, I wanted to keep this functionality.
>> Can we remove using `ThreadDeath` relying on that `Thread.stop()` is also
>> deprecated?
>
> I think
On Thu, 2 Mar 2023 17:43:54 GMT, Afshin Zafari wrote:
>> ### Description
>> The use of `ThreadDeath` is replaced with checking the exception be of type
>> `Error` and the thread is `TERMINATED`.
>>
>>
>> ### Test
>> local and mach5 tier1
>
> Afshin Zafari has updated the pull request increment
> ### Description
> The use of `ThreadDeath` is replaced with checking the exception be of type
> `Error` and the thread is `TERMINATED`.
>
>
> ### Test
> local and mach5 tier1
Afshin Zafari has updated the pull request incrementally with one additional
commit since the last revision:
83016
On Thu, 2 Mar 2023 17:39:10 GMT, Afshin Zafari wrote:
>> ### Description
>> The use of `ThreadDeath` is replaced with checking the exception be of type
>> `Error` and the thread is `TERMINATED`.
>>
>>
>> ### Test
>> local and mach5 tier1
>
> Afshin Zafari has updated the pull request increment
On Thu, 2 Mar 2023 17:27:59 GMT, Afshin Zafari wrote:
>> test/lib/jdk/test/lib/process/ProcessTools.java line 827:
>>
>>> 825:
>>> 826: public void uncaughtException(Thread t, Throwable e) {
>>> 827: if (e instanceof Error && t.getState() ==
>>> State.TERMINATED) {
>>
>> D
On Thu, 2 Mar 2023 14:13:10 GMT, Alan Bateman wrote:
>> ### Description
>> The use of `ThreadDeath` is replaced with checking the exception be of type
>> `Error` and the thread is `TERMINATED`.
>>
>>
>> ### Test
>> local and mach5 tier1
>
> test/lib/jdk/test/lib/process/ProcessTools.java line
On Thu, 2 Mar 2023 12:15:21 GMT, Afshin Zafari wrote:
> ### Description
> The use of `ThreadDeath` is replaced with checking the exception be of type
> `Error` and the thread is `TERMINATED`.
>
>
> ### Test
> local and mach5 tier1
test/lib/jdk/test/lib/process/ProcessTools.java line 827:
> 8