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

Switch to sync.RWMutex #10

Merged
merged 1 commit into from
Nov 11, 2023
Merged

Switch to sync.RWMutex #10

merged 1 commit into from
Nov 11, 2023

Commits on Nov 10, 2023

  1. Switch to sync.RWMutex

    In order to allow atomic reloads for passwd and group files this libraries uses
    mutexes to prevent lookups during reloads. In the current form this also means
    that concurrent lookups are not possible. This change replaces sync.Mutex with
    sync.RWMutex which allows concurrent read access.
    
    Signed-off-by: Christian Pointner <equinox@spreadspace.org>
    equinox0815 committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    3543765 View commit details
    Browse the repository at this point in the history