Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #442 - asomers:kevent, r=posborne
impl Send for KEvent carllerche/mio needs KEvent to be Send-able. It's safe to send because udata is always treated as a uintptr_t. The only ways to use udata that wouldn't be Send-able would also be unsafe because they would require casting udata to a pointer. So I think it's safe to add the Send trait to KEvent.
- Loading branch information