Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add vectored read and write support #58357

Merged
merged 7 commits into from
Feb 26, 2019
Merged

Commits on Feb 14, 2019

  1. Add vectored read and write support

    This functionality has lived for a while in the tokio ecosystem, where
    it can improve performance by minimizing copies.
    sfackler committed Feb 14, 2019
    Configuration menu
    Copy the full SHA
    31bcec6 View commit details
    Browse the repository at this point in the history
  2. impl Deref/DerefMut for IoVec types

    Returning &'a mut [u8] was unsound, and we may as well just have them
    directly deref to their slices to make it easier to work with them.
    sfackler committed Feb 14, 2019
    Configuration menu
    Copy the full SHA
    596f182 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    034de8d View commit details
    Browse the repository at this point in the history
  4. Add a tracking issue

    sfackler committed Feb 14, 2019
    Configuration menu
    Copy the full SHA
    5ca3b00 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2019

  1. Fix cloudabi

    sfackler committed Feb 24, 2019
    Configuration menu
    Copy the full SHA
    4c13791 View commit details
    Browse the repository at this point in the history
  2. Fix sgx

    sfackler committed Feb 24, 2019
    Configuration menu
    Copy the full SHA
    c5b87a2 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2019

  1. Fix redox

    sfackler committed Feb 25, 2019
    Configuration menu
    Copy the full SHA
    4785c74 View commit details
    Browse the repository at this point in the history