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

Fix race condition when using ParameterMap #44

Merged
merged 2 commits into from
Oct 16, 2014

Commits on Oct 16, 2014

  1. Fix race condition in ParameterMap

    If threads are competing to try and both check and update the map then
    they will hit the appropriate PARALLEL_CRITICAL sections within the
    relevant methods. The bug was that the critical sections all had different
    names and so OpenMP would not block on an ::add while a ::get is being
    performed. The critical secctions are renamed to reflect the what
    they are protecting.
    Refs #10375
    martyngigg committed Oct 16, 2014
    Configuration menu
    Copy the full SHA
    63e43e0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7cfbfa6 View commit details
    Browse the repository at this point in the history