-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Treat EINTR as a non-fatal interrupt
If a signal occurs for whatever reason, the OS may return EINTR as an error code. This was being treated as a fatal error in the .NET implementation. libnserial now returns zero for serial_read and serial_write as is the case for EAGAIN / EWOULDBLOCK. The .NET code was optimized slightly so that in case zero is returned, it skips a buffer check and tries again (this change is non-functional). Issue: DOTNET-91
- release/2.4.2.0
- release/2.4.1.0
- release/2.4.0.0
- release/2.4.0.0-preview.20211013
- release/2.3.1.0
- release/2.3.0.0
- release/2.2.2.0
- release/2.2.1.1
- release/2.2.1.0
- release/2.2.0.0
- release/2.1.4.0
- release/2.1.3.0
- release/2.1.2.0
- release/virt/v3.0.1
- release/virt/v3.0.0
- release/v3.0.1
- release/v3.0.0
- libnserial-1.1.4-0ubuntu1-zesty1
- libnserial-1.1.4-0ubuntu1-yakkety1
- libnserial-1.1.4-0ubuntu1-xenial1
- libnserial-1.1.4-0ubuntu1-trusty1
- libnserial-1.1.4-0ubuntu1-impish1
- libnserial-1.1.4-0ubuntu1-hirsute1
- libnserial-1.1.4-0ubuntu1-groovy1
- libnserial-1.1.4-0ubuntu1-focal1
- libnserial-1.1.4-0ubuntu1-eoan1
- libnserial-1.1.4-0ubuntu1-disco1
- libnserial-1.1.4-0ubuntu1-cosmic1
- libnserial-1.1.4-0ubuntu1-bionic1
- libnserial-1.1.4-0ubuntu1-artful1
- libnserial-1.1.2-0ubuntu1-zesty1
- libnserial-1.1.2-0ubuntu1-yakkety1
- libnserial-1.1.2-0ubuntu1-xenial1
- libnserial-1.1.2-0ubuntu1-trusty1
- libnserial-1.1.2-0ubuntu1-precise1
Showing
2 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters