stacktrace feature.
This commit is contained in:
parent
6300c26921
commit
5db1a042c2
|
|
@ -26,11 +26,6 @@ register message *m_ptr; /* pointer to request message */
|
||||||
|
|
||||||
vm_init();
|
vm_init();
|
||||||
|
|
||||||
if(m_ptr->m_source != VM_PROC_NR) {
|
|
||||||
kprintf("do_vmctl: source %d, not VM\n", m_ptr->m_source);
|
|
||||||
return ENOSYS;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(!isokendpt(ep, &proc_nr)) {
|
if(!isokendpt(ep, &proc_nr)) {
|
||||||
kprintf("do_vmctl: unexpected endpoint %d from VM\n", ep);
|
kprintf("do_vmctl: unexpected endpoint %d from VM\n", ep);
|
||||||
return EINVAL;
|
return EINVAL;
|
||||||
|
|
@ -97,6 +92,10 @@ kprintf("SYSTEM: request %d:0x%lx-0x%lx, wrflag %d, failed\n",
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
return OK;
|
return OK;
|
||||||
|
case VMCTL_STACKTRACE:
|
||||||
|
kprintf("vmctl stacktrace ");
|
||||||
|
proc_stacktrace(p);
|
||||||
|
return OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Try architecture-specific vmctls. */
|
/* Try architecture-specific vmctls. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user