mirror of
https://github.com/simh/simh.git
synced 2026-01-27 04:22:24 +00:00
simulators with global variables PC, SP and BC: Avoid name space collisions.
Avoid potential name space collision for the global variables PC, SP and BC when readline is dynamically loaded. For some unknown reason, ncurses exports these internal variables which may be needed in the context of how ncurses is used by readline implementations. In any case, these variable names are common in simulators, so there is an undesired interaction between simulator internal variables and the simplest solution is to rename these simulator global variables where they exist. Another alternative is to merely declare these variables static when they happen to only be referenced in a single simulator source module.
This commit is contained in:
committed by
Mark Pizzolato
parent
dab8053cf8
commit
ef8f4f53a2
@@ -40,3 +40,6 @@
|
||||
#define STOP_IBKPT 3 /* breakpoint */
|
||||
#define STOP_OPCODE 4
|
||||
|
||||
/* Rename of global BC and SP variables to avoid namespace conflicts on some platforms */
|
||||
#define BC BC_Global
|
||||
#define SP SP_Global
|
||||
|
||||
Reference in New Issue
Block a user