1
0
mirror of https://github.com/simh/simh.git synced 2026-04-27 04:26:41 +00:00

SCP: Add support to uniquely identify SIGTERM in do procedures

As discussed in #681
This commit is contained in:
Mark Pizzolato
2019-04-18 20:03:17 -07:00
parent 590be6b0dd
commit 4e0450cff9
3 changed files with 26 additions and 5 deletions

View File

@@ -415,8 +415,9 @@ typedef uint32 t_addr;
#define SCPE_AMBREG (SCPE_BASE + 45) /* ambiguous register */
#define SCPE_REMOTE (SCPE_BASE + 46) /* remote console command */
#define SCPE_INVEXPR (SCPE_BASE + 47) /* invalid expression */
#define SCPE_SIGTERM (SCPE_BASE + 48) /* SIGTERM has been received */
#define SCPE_MAX_ERR (SCPE_BASE + 47) /* Maximum SCPE Error Value */
#define SCPE_MAX_ERR (SCPE_BASE + 48) /* Maximum SCPE Error Value */
#define SCPE_KFLAG 0x10000000 /* tti data flag */
#define SCPE_BREAK 0x20000000 /* tti break flag */
#define SCPE_NOMESSAGE 0x40000000 /* message display supression flag */