Kernel: Create a stub mcontext for aarch64

The struct only has a stub integer so that the size is the same for C
and C++. Something caught by CLion.

This commit was made with mrkct's help!
This commit is contained in:
Jakub V. Flasar 2022-03-08 11:45:38 +01:00 committed by Brian Gianforcaro
parent cc2e08d9e9
commit f94293f121
Notes: sideshowbarker 2024-07-19 18:29:33 +09:00
2 changed files with 23 additions and 1 deletions

View File

@ -0,0 +1,22 @@
/*
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Platform.h>
#include <Kernel/API/POSIX/sys/types.h>
#ifdef __cplusplus
extern "C" {
#endif
struct __attribute__((packed)) __mcontext {
int stub;
};
#ifdef __cplusplus
}
#endif

View File

@ -11,5 +11,5 @@
#if ARCH(X86_64) || ARCH(I386)
# include <Kernel/Arch/x86/mcontext.h>
#elif ARCH(AARCH64)
# error "Unknown architecture"
# include <Kernel/Arch/aarch64/mcontext.h>
#endif