diff options
author | Sverker Eriksson <[email protected]> | 2012-01-26 19:34:22 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2012-02-21 12:23:04 +0100 |
commit | cd366260e689d97845c56f30ef960853099465ab (patch) | |
tree | 52d5e0c0985b3de0a251818b263ab873280da57b /erts/emulator/beam/module.h | |
parent | e60c9cd4356a91c10657b5de86af8279ccd6eb79 (diff) | |
download | otp-cd366260e689d97845c56f30ef960853099465ab.tar.gz otp-cd366260e689d97845c56f30ef960853099465ab.tar.bz2 otp-cd366260e689d97845c56f30ef960853099465ab.zip |
erts: Keep count of number of global traced functions per module
Diffstat (limited to 'erts/emulator/beam/module.h')
-rw-r--r-- | erts/emulator/beam/module.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/module.h b/erts/emulator/beam/module.h index 8c09b3628d..d63cf56778 100644 --- a/erts/emulator/beam/module.h +++ b/erts/emulator/beam/module.h @@ -30,6 +30,7 @@ struct erl_module_instance { unsigned catches; struct erl_module_nif* nif; int num_breakpoints; + int num_traced_exports; }; typedef struct erl_module { |