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: add unstable option to disable the LIFO slot #4936

Merged
merged 8 commits into from Aug 24, 2022
Merged

Commits on Aug 24, 2022

  1. rt: add unstable option to disable the LIFO slot

    The multi-threaded scheduler includes a per-worker LIFO slot used to
    store the last scheduled task. This can improve certain usage patterns,
    especially message passing between tasks. However, this LIFO slot is not
    currently stealable.
    
    Eventually, the LIFO slot **will** become stealable, however as a
    stop-gap, this unstable option lets users disable the LIFO task.
    carllerche committed Aug 24, 2022
    Copy the full SHA
    9c7d501 View commit details
    Browse the repository at this point in the history
  2. move field

    carllerche committed Aug 24, 2022
    Copy the full SHA
    de51a1d View commit details
    Browse the repository at this point in the history
  3. try to fix CI

    carllerche committed Aug 24, 2022
    Copy the full SHA
    97f6693 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    8f63463 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    f805c83 View commit details
    Browse the repository at this point in the history
  6. and again

    carllerche committed Aug 24, 2022
    Copy the full SHA
    2fe6b5d View commit details
    Browse the repository at this point in the history
  7. fix doc test

    carllerche committed Aug 24, 2022
    Copy the full SHA
    1ba424b View commit details
    Browse the repository at this point in the history
  8. and again

    carllerche committed Aug 24, 2022
    Copy the full SHA
    87b5804 View commit details
    Browse the repository at this point in the history