提交 9746b15b 编写于 作者: B bellard

'info mem' monitor command fix


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1134 c046a42c-6fe2-441c-8c8c-71466251a162
上级 7372f88d
......@@ -764,13 +764,15 @@ static void tlb_info(void)
static void mem_print(uint32_t *pstart, int *plast_prot,
uint32_t end, int prot)
{
if (prot != *plast_prot) {
int prot1;
prot1 = *plast_prot;
if (prot != prot1) {
if (*pstart != -1) {
term_printf("%08x-%08x %08x %c%c%c\n",
*pstart, end, end - *pstart,
prot & PG_USER_MASK ? 'u' : '-',
prot1 & PG_USER_MASK ? 'u' : '-',
'r',
prot & PG_RW_MASK ? 'w' : '-');
prot1 & PG_RW_MASK ? 'w' : '-');
}
if (prot != 0)
*pstart = end;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册