mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-22 00:41:55 +00:00
31 lines
424 B
C++
31 lines
424 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Swift.h>
|
|
#include <LibGC/Heap.h>
|
|
|
|
namespace GC {
|
|
|
|
class GC_API DeferGC {
|
|
public:
|
|
explicit DeferGC(Heap& heap)
|
|
: m_heap(heap)
|
|
{
|
|
m_heap.defer_gc();
|
|
}
|
|
|
|
~DeferGC()
|
|
{
|
|
m_heap.undefer_gc();
|
|
}
|
|
|
|
private:
|
|
Heap& m_heap;
|
|
} SWIFT_NONCOPYABLE;
|
|
|
|
}
|