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

rt: move I/O driver into runtime module #4942

Merged
merged 4 commits into from Aug 25, 2022
Merged

rt: move I/O driver into runtime module #4942

merged 4 commits into from Aug 25, 2022

Commits on Aug 24, 2022

  1. io: move public types out of io::driver.

    The `Interest` and `Ready` types are part of the public API and should
    not be defined in the driver module, which is intended to be internal.
    
    This is in preparation to move the I/O driver into the runtime module.
    carllerche committed Aug 24, 2022
    Copy the full SHA
    d1b0a18 View commit details
    Browse the repository at this point in the history
  2. rt: move I/O driver into runtime module

    This patch moves the I/O driver into the runtime module. The I/O driver
    is a runtime concern and is only used by the runtime. Moving the driver
    is a first step to clean up some Tokio internals. There will be follow
    up patches that integrate the I/O driver and other runtime concerns more
    closely.
    
    This is an internal refactor and should not impact any public APIs.
    carllerche committed Aug 24, 2022
    Copy the full SHA
    9ca5170 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2022

  1. fix feature build

    carllerche committed Aug 25, 2022
    Copy the full SHA
    b89900f View commit details
    Browse the repository at this point in the history
  2. fix more CI failures

    carllerche committed Aug 25, 2022
    Copy the full SHA
    9aa66a1 View commit details
    Browse the repository at this point in the history