diff options
author | Sverker Eriksson <[email protected]> | 2015-04-21 21:12:22 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2015-04-21 21:12:22 +0200 |
commit | c72bf109ab015815ac828e6faf823ec721cea5da (patch) | |
tree | 9110b2313f41189eedd749107239c0937c574b86 /erts/emulator | |
parent | 69e365b59cf63b0cf504efe77b92b6ab7ad5d38c (diff) | |
parent | 63e54ea5b37df65f8c040e4cd444b6740caf332d (diff) | |
download | otp-c72bf109ab015815ac828e6faf823ec721cea5da.tar.gz otp-c72bf109ab015815ac828e6faf823ec721cea5da.tar.bz2 otp-c72bf109ab015815ac828e6faf823ec721cea5da.zip |
Merge branch 'sverk/etp-map'
* sverk/etp-map:
erts: Add map support to gdb etp command
erts: Add etp_the_non_value
Diffstat (limited to 'erts/emulator')
-rw-r--r-- | erts/emulator/beam/erl_init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_init.c b/erts/emulator/beam/erl_init.c index a4f1e0d7ee..4f12727044 100644 --- a/erts/emulator/beam/erl_init.c +++ b/erts/emulator/beam/erl_init.c @@ -118,6 +118,8 @@ const int etp_big_endian = 1; #else const int etp_big_endian = 0; #endif +const Eterm etp_the_non_value = THE_NON_VALUE; + /* * Note about VxWorks: All variables must be initialized by executable code, * not by an initializer. Otherwise a new instance of the emulator will |