mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-13 23:36:09 +03:00

Fixes #290 Previously, our io_uring loops were exiting on EINTR. EINTR is sent for various reasons but particularly when a process is stopped such as for sleeping. We should not exit these loops. Longer term we should be more resilient to detecting that our renderer and/or IO thread as died and behave in some better way but this addresses a major issue in the mean time.