diff options
author | Björn-Egil Dahlberg <[email protected]> | 2011-01-03 16:16:54 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2011-01-03 16:16:54 +0100 |
commit | 095d5ebc0f739982b55b95fdd9919a6331b4b2b1 (patch) | |
tree | 4103f7ed11c37b97fbfe144d75546ae4f661fb49 /lib/erl_interface/include/ei.h | |
parent | 99372cc4053c2fa7662da2f871c9813fbf45ba7e (diff) | |
parent | bcbe0813a0b97f86a7db354e09bf0397cf68f787 (diff) | |
download | otp-095d5ebc0f739982b55b95fdd9919a6331b4b2b1.tar.gz otp-095d5ebc0f739982b55b95fdd9919a6331b4b2b1.tar.bz2 otp-095d5ebc0f739982b55b95fdd9919a6331b4b2b1.zip |
Merge branch 'vb/ei-exts' into dev
* vb/ei-exts:
Fix testcases erl_global_whereis, erl_global_names
Fix wrong erl_compare_ext result comparing lists
Correct erl_global{register, unregister} functions
Add PID (~p) type parameters to ei_format
Add char (~c) type parameters to ei_format
OTP-9015
Conflicts:
lib/erl_interface/include/ei.h
Diffstat (limited to 'lib/erl_interface/include/ei.h')
-rw-r--r-- | lib/erl_interface/include/ei.h | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/lib/erl_interface/include/ei.h b/lib/erl_interface/include/ei.h index 0c72ab977a..ae815b414a 100644 --- a/lib/erl_interface/include/ei.h +++ b/lib/erl_interface/include/ei.h @@ -80,21 +80,24 @@ #define ERL_NO_TIMEOUT -1 /* these are the control message types */ -#define ERL_LINK 1 -#define ERL_SEND 2 -#define ERL_EXIT 3 -#define ERL_UNLINK 4 - -#define ERL_REG_SEND 6 -#define ERL_GROUP_LEADER 7 -#define ERL_EXIT2 8 -#define ERL_PASS_THROUGH 'p' +#define ERL_LINK 1 +#define ERL_SEND 2 +#define ERL_EXIT 3 +#define ERL_UNLINK 4 +#define ERL_NODE_LINK 5 +#define ERL_REG_SEND 6 +#define ERL_GROUP_LEADER 7 +#define ERL_EXIT2 8 +#define ERL_PASS_THROUGH 'p' /* new ones for tracing, from Kenneth */ -#define ERL_SEND_TT 12 -#define ERL_EXIT_TT 13 -#define ERL_REG_SEND_TT 16 -#define ERL_EXIT2_TT 18 +#define ERL_SEND_TT 12 +#define ERL_EXIT_TT 13 +#define ERL_REG_SEND_TT 16 +#define ERL_EXIT2_TT 18 +#define ERL_MONITOR_P 19 +#define ERL_DEMONITOR_P 20 +#define ERL_MONITOR_P_EXIT 21 /* -------------------------------------------------------------------- */ |