1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:38:12 +00:00

Kernel: Mark PTYMultiplexer init & parse_hex_digit as UNMAP_AFTER_INIT

Noticed these boot only functions are not currently UNMAP_AFTER_INIT.
Lets fix that :^)
This commit is contained in:
Brian Gianforcaro 2021-12-24 05:19:13 -08:00 committed by Brian Gianforcaro
parent 4758dac218
commit e88e4967d1
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ UNMAP_AFTER_INIT PTYMultiplexer::~PTYMultiplexer()
{
}
void PTYMultiplexer::initialize()
UNMAP_AFTER_INIT void PTYMultiplexer::initialize()
{
the().after_inserting();
}