mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
Kernel: Give a name to the Master TLS region allocation
This commit is contained in:
parent
2c9541315d
commit
373e8bcbc7
Notes:
sideshowbarker
2024-07-18 18:52:11 +09:00
Author: https://github.com/itamar8910
Commit: 373e8bcbc7
Pull-request: https://github.com/SerenityOS/serenity/pull/6607
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/tomuta
1 changed files with 1 additions and 1 deletions
|
@ -619,7 +619,7 @@ KResultOr<FlatPtr> Process::sys$allocate_tls(size_t size)
|
|||
if (!range.has_value())
|
||||
return ENOMEM;
|
||||
|
||||
auto region_or_error = space().allocate_region(range.value(), String(), PROT_READ | PROT_WRITE);
|
||||
auto region_or_error = space().allocate_region(range.value(), String("Master TLS"), PROT_READ | PROT_WRITE);
|
||||
if (region_or_error.is_error())
|
||||
return region_or_error.error().error();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue