diff options
author | Sverker Eriksson <[email protected]> | 2019-05-29 16:54:28 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2019-05-29 16:54:28 +0200 |
commit | de42a0f1c681ebf215adeb9f3a5b39d691432965 (patch) | |
tree | 9594b96b3efd18513aa05f9787d825b6ddecfff7 /erts/emulator/beam/erl_process.h | |
parent | bcb15cf3ee682db4b6783c91e28c9c23caf7f6bc (diff) | |
parent | 6e3ce6cac718ff0eae1349eb0b4ab8513abba343 (diff) | |
download | otp-de42a0f1c681ebf215adeb9f3a5b39d691432965.tar.gz otp-de42a0f1c681ebf215adeb9f3a5b39d691432965.tar.bz2 otp-de42a0f1c681ebf215adeb9f3a5b39d691432965.zip |
Merge branch 'maint'
Diffstat (limited to 'erts/emulator/beam/erl_process.h')
-rw-r--r-- | erts/emulator/beam/erl_process.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/erts/emulator/beam/erl_process.h b/erts/emulator/beam/erl_process.h index 93a3215c17..9ccdd9df82 100644 --- a/erts/emulator/beam/erl_process.h +++ b/erts/emulator/beam/erl_process.h @@ -1230,9 +1230,10 @@ void erts_check_for_holes(Process* p); /* The sequential tracing token is a tuple of size 5: * - * {Flags, Label, Serial, Sender} + * {Flags, Label, Serial, Sender, LastCnt} + * + * WARNING: The top 5-tuple is *MUTABLE* and thus INTERNAL ONLY. */ - #define SEQ_TRACE_TOKEN_ARITY(p) (arityval(*(tuple_val(SEQ_TRACE_TOKEN(p))))) #define SEQ_TRACE_TOKEN_FLAGS(p) (*(tuple_val(SEQ_TRACE_TOKEN(p)) + 1)) #define SEQ_TRACE_TOKEN_LABEL(p) (*(tuple_val(SEQ_TRACE_TOKEN(p)) + 2)) |