forked from tokio-rs/mio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix NetBSD build failure due to kevent type difference (tokio-rs#621)
* Add NetBSD to the CI run * Adapt to kevent type difference on NetBSD * In struct kevent, filter is uint32_t on NetBSD, while short on other platforms. And udata is intptr_t on NetBSD, while void * on other platforms. * In kevent() function, nchanges and nevents are size_t on NetBSD, while int on other platforms.
- Loading branch information
1 parent
c4d3fc9
commit 0cab6ca
Showing
2 changed files
with
41 additions
and
12 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