Newer
Older
minerva / Kernel / Arch / riscv64 / mcontext.h
@minerva minerva on 13 Jul 317 bytes Initial commit
/*
 * Copyright (c) 2023, Sönke Holz <sholz8530@gmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <Kernel/API/POSIX/sys/types.h>

#ifdef __cplusplus
extern "C" {
#endif

struct __attribute__((packed)) __mcontext {
    uint64_t x[31];
    uint64_t pc;
};

#ifdef __cplusplus
}
#endif