diff options
author | Rickard Green <[email protected]> | 2016-05-27 16:19:08 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2016-05-31 15:38:31 +0200 |
commit | c8bd15f0e5539ec3056565b535ff6db389f42a6b (patch) | |
tree | a7ddf65c19a0b22f2a06e52e94e05ea245568f38 /erts/emulator/beam/global.h | |
parent | 60557173f8a7bd0d4deafdb2b3e066899c586f56 (diff) | |
download | otp-c8bd15f0e5539ec3056565b535ff6db389f42a6b.tar.gz otp-c8bd15f0e5539ec3056565b535ff6db389f42a6b.tar.bz2 otp-c8bd15f0e5539ec3056565b535ff6db389f42a6b.zip |
Move dirty reduction count to erts_dirty_process_main()
Diffstat (limited to 'erts/emulator/beam/global.h')
-rw-r--r-- | erts/emulator/beam/global.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index 15253bb53e..f3d4ac56cd 100644 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -62,7 +62,8 @@ struct enif_environment_t /* ErlNifEnv */ extern void erts_pre_nif(struct enif_environment_t*, Process*, struct erl_module_nif*, Process* tracee); extern void erts_post_nif(struct enif_environment_t* env); -extern void erts_pre_dirty_nif(struct enif_environment_t*, Process*, +extern void erts_pre_dirty_nif(ErtsSchedulerData *, + struct enif_environment_t*, Process*, struct erl_module_nif*, Process* tracee); extern Eterm erts_nif_taints(Process* p); extern void erts_print_nif_taints(int to, void* to_arg); @@ -1154,7 +1155,7 @@ void print_pass_through(int, byte*, int); int catchlevel(Process*); void init_emulator(void); void process_main(void); -void dirty_process_main(void); +void erts_dirty_process_main(ErtsSchedulerData *); Eterm build_stacktrace(Process* c_p, Eterm exc); Eterm expand_error_value(Process* c_p, Uint freason, Eterm Value); void erts_save_stacktrace(Process* p, struct StackTrace* s, int depth); |