You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by adessaigne <gi...@git.apache.org> on 2018/09/24 15:26:26 UTC

[GitHub] felix pull request #156: FELIX-5942 - Replace wait/notify by lock/conditions...

GitHub user adessaigne opened a pull request:

    https://github.com/apache/felix/pull/156

    FELIX-5942 - Replace wait/notify by lock/conditions in Felix to avoid freeze

    Fix proposal for [FELIX-5942](https://issues.apache.org/jira/browse/FELIX-5942).
    
    Instead of a single `Object` with calls to `wait` and `notifyAll` we're using a `Lock` with 2 `Condition` objects :
    * one when the waiting conditions on global lock acquisition have changed
    * one when the waiting conditions on bundle lock acquisition have changed

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/adessaigne/felix FELIX-5942

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/felix/pull/156.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #156
    
----
commit d906ec37291bbc7d9fd4bd3211aaae0b4f9eac00
Author: Antoine DESSAIGNE <an...@...>
Date:   2018-09-24T15:22:12Z

    FELIX-5942 - Replace wait/notify by lock/conditions in Felix to avoid freeze

----


---

[GitHub] felix pull request #156: FELIX-5942 - Replace wait/notify by lock/conditions...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/felix/pull/156


---