- add enums for the LOG_ASK choices: continue, die, etc.

This commit is contained in:
Bryce Denney 2002-09-25 18:32:36 +00:00
parent 13de366861
commit fd2566023a
1 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: siminterface.h,v 1.72 2002-09-23 17:41:42 bdenney Exp $
// $Id: siminterface.h,v 1.73 2002-09-25 18:32:36 bdenney Exp $
/////////////////////////////////////////////////////////////////////////
//
// Before I can describe what this file is for, I have to make the
@ -652,6 +652,14 @@ typedef struct {
// displayed. The CI shows a dialog that asks if the user wants to
// continue, quit, etc. and sends the answer back to the simulator.
// This event also uses BxLogMsgEvent.
enum {
BX_LOG_ASK_CHOICE_CONTINUE,
BX_LOG_ASK_CHOICE_CONTINUE_ALWAYS,
BX_LOG_ASK_CHOICE_DIE,
BX_LOG_ASK_CHOICE_DUMP_CORE,
BX_LOG_ASK_CHOICE_ENTER_DEBUG,
BX_LOG_ASK_N_CHOICES
};
// Event type: BX_SYNC_EVT_GET_DBG_COMMAND
//