Replace EINTR with ERESTART in posix_sigqueue.

This commit is contained in:
4lDO2
2026-02-05 15:15:41 +01:00
parent 199a09329d
commit bc6784d5ed
+1 -1
View File
@@ -92,7 +92,7 @@ pub fn posix_sigqueue(pid: usize, sig: usize, arg: usize) -> Result<()> {
}) {
Ok(_)
| Err(Error {
errno: error::EINTR,
errno: error::ERESTART,
}) => Ok(()),
Err(error) => Err(error),
}