Jan Kotas
Jan Kotas
It should be fixed in RemovingILProvider.cs.
As @MichalStrehovsky said.
I would prefer to avoid having two different variants of unwind data. Stack unwinding is a bug farm for hard to debug crashes. Having two very different paths makes it...
libunwind in CoreRT is only used to unwind RyuJIT generated code. It just needs to handle unwind codes that RyuJIT is producing.
Could you please share the stacktrace that leads to the `sched_yield()==0` infinite loop that you are seeing?
This thread is waiting for other threads to reach GC safe point. Could you please check the stacktraces of the the other threads? You should fine a thread that is...
Hmm, the stack traces do not ring any bells. It looks all normal. Could you please step through the loop in `ThreadStore::SuspendAllThreads` and find the `Thread*` that causes `keepWaiting` to...
Do you see that the loop inside `ThreadStore::SuspendAllThreads` is waiting for the thread that is calling `epoll_wait` ? Would you mind sharing the bit of code in `EpollNetDataMonitor.cs` that calls...
That looks like .NET SDK issue. You need to find the place that is trying to copy app.exe to bin in the .NET SDK targets and suppress it somehow.
The current implementation of `System.Text.Json` serializer is very unfriendly to full AOT compilation due to heavy reflection use. You can always make it work by adding more hints to the...