《操作系统》的实验代码。
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

19 lignes
729 B

il y a 12 ans
il y a 12 ans
  1. #ifndef __KERN_DEBUG_MONITOR_H__
  2. #define __KERN_DEBUG_MONITOR_H__
  3. #include <trap.h>
  4. void kmonitor(struct trapframe *tf);
  5. int mon_help(int argc, char **argv, struct trapframe *tf);
  6. int mon_kerninfo(int argc, char **argv, struct trapframe *tf);
  7. int mon_backtrace(int argc, char **argv, struct trapframe *tf);
  8. int mon_continue(int argc, char **argv, struct trapframe *tf);
  9. int mon_step(int argc, char **argv, struct trapframe *tf);
  10. int mon_breakpoint(int argc, char **argv, struct trapframe *tf);
  11. int mon_watchpoint(int argc, char **argv, struct trapframe *tf);
  12. int mon_delete_dr(int argc, char **argv, struct trapframe *tf);
  13. int mon_list_dr(int argc, char **argv, struct trapframe *tf);
  14. #endif /* !__KERN_DEBUG_MONITOR_H__ */