aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/lib/kernel/include/dist.hrl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2017-09-01 10:55:01 +0200
committerBjörn Gustavsson <[email protected]>2017-09-01 11:28:36 +0200
commit31a38a1bd3814c22f217afbd686f20ee5a2fe434 (patch)
treeb5a0b3660ef4a943e72a31d4334d991663477c98 /bootstrap/lib/kernel/include/dist.hrl
parentfdf30c9a74871e45fc15004835f96cb1481fa5ca (diff)
downloadotp-31a38a1bd3814c22f217afbd686f20ee5a2fe434.tar.gz
otp-31a38a1bd3814c22f217afbd686f20ee5a2fe434.tar.bz2
otp-31a38a1bd3814c22f217afbd686f20ee5a2fe434.zip
Update primary bootstrap
Diffstat (limited to 'bootstrap/lib/kernel/include/dist.hrl')
-rw-r--r--bootstrap/lib/kernel/include/dist.hrl30
1 files changed, 30 insertions, 0 deletions
diff --git a/bootstrap/lib/kernel/include/dist.hrl b/bootstrap/lib/kernel/include/dist.hrl
index d6bccdf474..db4a5eaebc 100644
--- a/bootstrap/lib/kernel/include/dist.hrl
+++ b/bootstrap/lib/kernel/include/dist.hrl
@@ -40,3 +40,33 @@
-define(DFLAG_UTF8_ATOMS, 16#10000).
-define(DFLAG_MAP_TAG, 16#20000).
-define(DFLAG_BIG_CREATION, 16#40000).
+-define(DFLAG_SEND_SENDER, 16#80000).
+
+%% DFLAGs that require strict ordering or:ed together...
+-define(DFLAGS_STRICT_ORDER_DELIVERY,
+ ?DFLAG_DIST_HDR_ATOM_CACHE).
+
+
+%% Also update dflag2str() in ../src/dist_util.erl
+%% when adding flags...
+
+-define(DFLAGS_ALL,
+ (?DFLAG_PUBLISHED
+ bor ?DFLAG_ATOM_CACHE
+ bor ?DFLAG_EXTENDED_REFERENCES
+ bor ?DFLAG_DIST_MONITOR
+ bor ?DFLAG_FUN_TAGS
+ bor ?DFLAG_DIST_MONITOR_NAME
+ bor ?DFLAG_HIDDEN_ATOM_CACHE
+ bor ?DFLAG_NEW_FUN_TAGS
+ bor ?DFLAG_EXTENDED_PIDS_PORTS
+ bor ?DFLAG_EXPORT_PTR_TAG
+ bor ?DFLAG_BIT_BINARIES
+ bor ?DFLAG_NEW_FLOATS
+ bor ?DFLAG_UNICODE_IO
+ bor ?DFLAG_DIST_HDR_ATOM_CACHE
+ bor ?DFLAG_SMALL_ATOM_TAGS
+ bor ?DFLAG_UTF8_ATOMS
+ bor ?DFLAG_MAP_TAG
+ bor ?DFLAG_BIG_CREATION
+ bor ?DFLAG_SEND_SENDER)).