Does the underlying __io_uring_get_cqe
function allow interruption via signals?
#762
Unanswered
kevincianfarini
asked this question in
Q&A
Replies: 1 comment
-
I've just realized that
So it seems like using |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm hoping to be able to interrupt a thread that polling for completion events with
pthread_kill
. I see thatio_uring_wait_cqe
passes a null pointer for a sigmask to the underlying__io_uring_get_cqe
. Is there any harm in using that function which exposes a sigmask, and will it allow interrupts as expected?Thank you!
Beta Was this translation helpful? Give feedback.
All reactions