Re: New candidate JEP: 435: Asynchronous Stack Trace VM API

2022-12-22 Thread Bechberger, Johannes
> What is the definition of "safe" you are using in a signal handling context? The code is certainly executing a ton of stuff not known to be async-signal-safe. You're right, "safe" is the wrong word. I meant "stable" in the sense, that it is unlikely to crash your JVM. This is ensu

Re: New candidate JEP: 435: Asynchronous Stack Trace VM API

2022-12-21 Thread David Holmes
On 3/11/2022 4:36 am, Mark Reinhold wrote: https://openjdk.org/jeps/435 Summary: Define an efficient and reliable API to collect stack traces asynchronously and include information on both Java and native stack frames. There has been some commentary on this in the JBS issue and some

New candidate JEP: 435: Asynchronous Stack Trace VM API

2022-11-02 Thread Mark Reinhold
https://openjdk.org/jeps/435 Summary: Define an efficient and reliable API to collect stack traces asynchronously and include information on both Java and native stack frames. - Mark