加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dlib.h 500 Bytes
一键复制 编辑 原始数据 按行查看 历史
Hubor 提交于 2022-04-02 01:04 . monitor debug function : regs
/*************************************************************************
> File Name: dlib.h
> Author: SuWeishuai
> Mail: suwsl@foxmail.com
> Created Time: Sat 02 Apr 2022 12:56:27 AM CST
************************************************************************/
#ifndef DLIB_H
#define DLIB_H
#include "types.h"
struct pt_regs { // size:272
u64 regs[31];
u64 sp;
u64 pc;
u64 pstate;
};
extern struct pt_regs * pt_regs;
void show_regs(struct pt_regs * pt_regs);
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化