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

Avoid unnecessary synchronization in {force,deref}_mut #231

Merged
merged 4 commits into from
May 29, 2023

Commits on May 28, 2023

  1. Avoid unnecessary synchronization in {force,deref}_mut

      - `DerefMut` was not delegating to `force_mut()` (contary to the
        by-ref APIs);
      - `Lazy::force_mut` was not taking advantage of exclusive-mutability
        access, and instead paying shared-mutability access. Mainly, in the
        `sync` case, it involved atomic operations which are now skipped.
    
    Fixes matklad#226
    danielhenrymantilla committed May 28, 2023
    Configuration menu
    Copy the full SHA
    8f2d2f5 View commit details
    Browse the repository at this point in the history
  2. v1.17.2

    danielhenrymantilla committed May 28, 2023
    Configuration menu
    Copy the full SHA
    b5db23c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    53ac97e View commit details
    Browse the repository at this point in the history
  4. Update .lock file

    danielhenrymantilla committed May 28, 2023
    Configuration menu
    Copy the full SHA
    060943b View commit details
    Browse the repository at this point in the history