When SMPng was first committed, we removed 'cpl' from the interrupt

frame.  Teach ddb about this as there is one less word for it to skip
over when finding a trapframe on the interrupt frame stack.
This commit is contained in:
John Baldwin 2001-02-07 22:41:47 +00:00
parent e8288d7f9c
commit 67b00ca875
2 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ db_nextframe(fp, ip)
}
break;
case INTERRUPT:
tf = (struct trapframe *)((int)*fp + 16);
tf = (struct trapframe *)((int)*fp + 12);
if (INKERNEL((int) tf)) {
eip = tf->tf_eip;
ebp = tf->tf_ebp;

View File

@ -214,7 +214,7 @@ db_nextframe(fp, ip)
}
break;
case INTERRUPT:
tf = (struct trapframe *)((int)*fp + 16);
tf = (struct trapframe *)((int)*fp + 12);
if (INKERNEL((int) tf)) {
eip = tf->tf_eip;
ebp = tf->tf_ebp;