Images 💾

Last commit ⭐

commit 4355a01455a6ca15fab81ad4c9f6667996b68602
Author:     kleines Filmröllchen <filmroellchen@serenityos.org>
AuthorDate: Mon Aug 22 19:23:01 2022 +0200
Commit:     Andreas Kling <kling@serenityos.org>
CommitDate: Tue Aug 23 01:03:10 2022 +0200

    LibCore: Fix deadlock in SharedSingleProducerCircularQueue
    
    This deadlock would incorrectly change the queue from almost empty to
    full on dequeue because someone else could empty the queue after we had
    checked its non-emptyness. The test would deadlock on this, which
    doesn't happen anymore.