================ rvDebuggerServer::HandleInspectCallstack Handle an incoming inspect callstack message by sending a message back to the client with the callstack data. ================ */
| 396 | ================ |
| 397 | */ |
| 398 | void rvDebuggerServer::HandleInspectCallstack ( idBitMsg* msg ) |
| 399 | { |
| 400 | idBitMsg msgOut; |
| 401 | byte buffer[MAX_MSGLEN]; |
| 402 | |
| 403 | msgOut.Init(buffer, sizeof( buffer ) ); |
| 404 | msgOut.BeginWriting(); |
| 405 | msgOut.WriteShort ( (short)DBMSG_INSPECTCALLSTACK ); |
| 406 | |
| 407 | ((idGameEditExt*) gameEdit)->MSG_WriteInterpreterInfo(&msgOut, mBreakInterpreter, mBreakProgram, mBreakInstructionPointer); |
| 408 | |
| 409 | SendPacket (msgOut.GetData(), msgOut.GetSize() ); |
| 410 | } |
| 411 | |
| 412 | /* |
| 413 | ================ |
nothing calls this directly
no test coverage detected