File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
sysdeps/managarm/include/bits Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,8 @@ inline int operator|(managarm::fs::Errors e, ToErrno) {
76
76
return ENOTSOCK;
77
77
case managarm::fs::Errors::INTERNAL_ERROR:
78
78
return EIO;
79
+ case managarm::fs::Errors::INTERRUPTED:
80
+ return EINTR;
79
81
}
80
82
81
83
mlibc::panicLogger () << " unhandled managarm::fs::Errors " << static_cast <int32_t >(e)
@@ -145,6 +147,8 @@ inline int operator|(managarm::posix::Errors e, ToErrno) {
145
147
return EISCONN;
146
148
case managarm::posix::Errors::UNSUPPORTED_SOCKET_TYPE:
147
149
return ESOCKTNOSUPPORT;
150
+ case managarm::posix::Errors::INTERRUPTED:
151
+ return EINTR;
148
152
}
149
153
150
154
mlibc::panicLogger () << " unhandled managarm::posix::Errors " << static_cast <int32_t >(e)
You can’t perform that action at this time.
0 commit comments