mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
hurd: return EIEIO instead of EIO
EIO would be understood as hardware failure, while this is software failure. * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Return EIEIO instead of EIO
This commit is contained in:
@ -323,9 +323,9 @@ _hurd_intr_rpc_mach_msg (mach_msg_header_t *msg,
|
||||
/* FALLTHROUGH */
|
||||
|
||||
dead:
|
||||
err = EIO;
|
||||
err = EIEIO;
|
||||
|
||||
/* The EIO return indicates cancellation, so clear the flag. */
|
||||
/* The EIEIO return indicates cancellation, so clear the flag. */
|
||||
ss->cancel = 0;
|
||||
break;
|
||||
|
||||
|
Reference in New Issue
Block a user