diff options
author | Mikhail Burakov <mburakov@mailbox.org> | 2022-12-26 12:14:46 +0100 |
---|---|---|
committer | Mikhail Burakov <mburakov@mailbox.org> | 2022-12-26 12:14:46 +0100 |
commit | 1b661ca51f4bd42c9aeba8dbedff691d69623263 (patch) | |
tree | d3058929cddd521dacb6001cc27b051a48bade48 /io_muxer.h | |
parent | 98457dcd5c0913679395a1a22442cef97212f03c (diff) |
Remove inner loop from io muxer
Diffstat (limited to 'io_muxer.h')
-rw-r--r-- | io_muxer.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -36,8 +36,9 @@ struct IoMuxer { }; enum IoMuxerResult { - kIoMuxerResultError = 0, + kIoMuxerResultSuccess = 0, kIoMuxerResultTimeout, + kIoMuxerResultError, }; void IoMuxerCreate(struct IoMuxer* io_muxer); |