Oliver Jowett
Oliver Jowett
For the first case, you need to test with a signal that is delivered to the signal-handling thread initially. If it goes to another thread, then you get the correct...
My only concern with keeping everything blocked in the signal-handling thread and forwarding unhandled signals to the main thread, is what happens if the signal-handling thread gets a SEGV or...
So far this looks like a problem in the underlying h3 library where `polygonToCells` returns E_FAILED. I'll put together a C testcase and report an issue against the library; but...
It was a 3rd party report on macOS, I don't know the GPU used. Here's the workaround I ended up using: https://github.com/mutability/Cataclysm-DDA/commit/85dc4399d4b0ce727978928c117d8a297acd1f3a (tl;dr: create a new SDL_Surface that shares storage...
Original report is here: https://github.com/CleverRaven/Cataclysm-DDA/pull/19412#issuecomment-263537985
Traveling so sorry for the brevity Something to get the desired format for an image would be potentially useful elsewhere. For my particular case doing it piece by piece is...
The underlying problem here is that localStorage is per-origin, not specific to the page. A more general fix would be to prefix the keys with the URL (or URL path)....
> why not just pass it in to the function? The halfbit value is used in busy parts of the loop; I wanted to encourage the compiler to take advantage...
> I had to change fabs to abs in tables.c and add -Wno-error=address-of-packed-member to the compile options. gcc-10 complains about alignment... Huh, I thought I already fixed those: https://github.com/flightaware/dump1090/commit/3eb2783cdf85688e7babef7b912cd02210901cfe https://github.com/flightaware/dump1090/commit/dbdf18dcc0c90b2fce178f317c40db3eb8c8c024
Great! Thanks for looking at this. I'm working through a bit of a backlog of other stuff at the moment but I should be back on demodulator work soon. Did...