将 gdb 与 GMP 变量结合使用
我正在使用 gdb 调试一些 C 代码。我的程序有一个 mpz_t * retval
类型的变量。如果我运行该命令,
print *retval
我会得到输出
$23 = {{
_mp_alloc = 6,
_mp_size = 5,
_mp_d = 0x1001008d0
}}
是否还有其他方法可以获取有关 retval
中存储的值的更多信息?
I am debugging some C code with gdb. My program has a variable of type mpz_t * retval
. If I run the command
print *retval
I get the output
$23 = {{
_mp_alloc = 6,
_mp_size = 5,
_mp_d = 0x1001008d0
}}
Is there anything else I can do to get more information about the value stored in retval
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这些:
您还想知道什么?
Try these:
What else do you you want to know?