mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-08 12:56:23 +03:00
5f4a67434c
Now that the shared bottom 2 MiB virtual address mappings are gone userspace can use lower virtual addresses.
13 lines
244 B
C++
13 lines
244 B
C++
/*
|
|
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <Kernel/Sections.h>
|
|
|
|
constexpr FlatPtr userspace_range_base = USER_RANGE_BASE;
|