Data associated with the kernel debugger communications protocol.

typedef struct _cvkcmd_s {
  USHORT          Cmd;       /*  Command */
  ULONG           Value;     /*  Value, command dependent. */
  ULONG           OffV;      /*  Command dependent, usually a linear address. */
  USHORT          SegV;      /*  Command dependent.  Usually slot number of thread. */
  USHORT          MTE;       /*  Module Table Entry */
  USHORT          PID;       /*  Process Identifier */
  USHORT          TID;       /*  Thread Identifier */
  USHORT          DBit;      /*  Flags from the CS selector. */
  RegSA_struc     Reg;       /*  Register save area */
  UCHAR           MemCache;  /*  Data area */
} cvkcmd_s;

typedef   cvkcmd _ s   * cvkcmd _ s ;


[Back] [Next]