:github_url: https://github.com/nyx-org/gaia .. _program_listing_file_kernel_elf.hpp: Program Listing for File elf.hpp ================================ |exhale_lsh| :ref:`Return to documentation for file ` (``kernel/elf.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /* SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Gaia { Result exec(Task &task, const char *path); // Should probably be moved to POSIX Result execve(Task &task, const char *path, char const *argv[], char const *envp[]); static constexpr auto USER_STACK_TOP = 0x7fffffffe000; static constexpr auto USER_STACK_SIZE = MIB(2); // This is allocated on-demand so we can make this very big static constexpr auto KERNEL_STACK_SIZE = 0x1000 * 16; } // namespace Gaia