mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-26 03:02:27 -05:00
33 lines
566 B
C
33 lines
566 B
C
|
/*
|
||
|
* Copyright (c) 2020, Tom <tomut@yahoo.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/BitCast.h>
|
||
|
#include <AK/Function.h>
|
||
|
|
||
|
namespace Kernel {
|
||
|
|
||
|
struct DeferredCallEntry {
|
||
|
using HandlerFunction = Function<void()>;
|
||
|
|
||
|
DeferredCallEntry* next;
|
||
|
alignas(HandlerFunction) u8 handler_storage[sizeof(HandlerFunction)];
|
||
|
bool was_allocated;
|
||
|
|
||
|
HandlerFunction& handler_value()
|
||
|
{
|
||
|
return *bit_cast<HandlerFunction*>(&handler_storage);
|
||
|
}
|
||
|
|
||
|
void invoke_handler()
|
||
|
{
|
||
|
handler_value()();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}
|