Skip to content

Commit

Permalink
Remove already, in-progress & message-size error codes, as thos…
Browse files Browse the repository at this point in the history
…e relate to sockets and not filesystems.
  • Loading branch information
badeend committed Aug 7, 2024
1 parent c2bed92 commit beb2a80
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions wit/types.wit
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,6 @@ interface types {
access,
/// Resource unavailable, or operation would block, similar to `EAGAIN` and `EWOULDBLOCK` in POSIX.
would-block,
/// Connection already in progress, similar to `EALREADY` in POSIX.
already,
/// Device or resource busy, similar to `EBUSY` in POSIX.
busy,
/// Resource deadlock would occur, similar to `EDEADLK` in POSIX.
Expand All @@ -200,8 +198,6 @@ interface types {
file-too-large,
/// Illegal byte sequence, similar to `EILSEQ` in POSIX.
illegal-byte-sequence,
/// Operation in progress, similar to `EINPROGRESS` in POSIX.
in-progress,
/// Interrupted function, similar to `EINTR` in POSIX.
interrupted,
/// Invalid argument, similar to `EINVAL` in POSIX.
Expand All @@ -214,8 +210,6 @@ interface types {
loop,
/// Too many links, similar to `EMLINK` in POSIX.
too-many-links,
/// Message too large, similar to `EMSGSIZE` in POSIX.
message-size,
/// Filename too long, similar to `ENAMETOOLONG` in POSIX.
name-too-long,
/// No such device, similar to `ENODEV` in POSIX.
Expand Down

0 comments on commit beb2a80

Please sign in to comment.