rdbg.h 385 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* Remote kernel debug protocol */
  2. enum
  3. {
  4. Terr='0', /* not sent */
  5. Rerr,
  6. Tmget,
  7. Rmget,
  8. Tmput,
  9. Rmput,
  10. Tspid, /* obsolete */
  11. Rspid, /* obsolete */
  12. Tproc,
  13. Rproc,
  14. Tstatus,
  15. Rstatus,
  16. Trnote,
  17. Rrnote,
  18. Tstartstop,
  19. Rstartstop,
  20. Twaitstop,
  21. Rwaitstop,
  22. Tstart,
  23. Rstart,
  24. Tstop,
  25. Rstop,
  26. Tkill,
  27. Rkill,
  28. Tcondbreak,
  29. Rcondbreak,
  30. RDBMSGLEN = 10 /* tag byte, 9 data bytes */
  31. };