1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 15:45:08 +00:00
serenity/Userland/Libraries/LibC/sys/arch/riscv64/regs.h

46 lines
740 B
C

/*
* Copyright (c) 2023, Sönke Holz <sholz8530@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Platform.h>
#if defined(__cplusplus) && defined(__cpp_concepts)
# include <AK/Types.h>
#else
# include <sys/types.h>
#endif
#include <Kernel/Arch/mcontext.h>
#ifdef __cplusplus
struct [[gnu::packed]] PtraceRegisters : public __mcontext {
# if defined(__cplusplus) && defined(__cpp_concepts)
FlatPtr ip() const
{
return pc;
}
void set_ip(FlatPtr ip)
{
pc = ip;
}
FlatPtr bp() const
{
return x[7];
}
void set_bp(FlatPtr bp)
{
x[7] = bp;
}
# endif
};
#else
typedef struct __mcontext PthreadRegisters;
#endif