diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-02-15 18:12:48 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-02-16 15:04:39 +0100 |
commit | 4ea67ffdac2629255b1b0ed4e9423823f62c0947 (patch) | |
tree | 0b47a8b303deec5c535ae6d54b5a277b9f432b84 /erts/emulator/beam/erl_process.h | |
parent | f5a6e1c353e2a7fb536dcac4523e4f6e3d99039b (diff) | |
download | otp-4ea67ffdac2629255b1b0ed4e9423823f62c0947.tar.gz otp-4ea67ffdac2629255b1b0ed4e9423823f62c0947.tar.bz2 otp-4ea67ffdac2629255b1b0ed4e9423823f62c0947.zip |
erts: Add BIF erts_internal:system_check/1
This commit implements erts_internal:system_check(schedulers) with the
intent of a basic responsiveness test check of the schedulers.
Diffstat (limited to 'erts/emulator/beam/erl_process.h')
-rw-r--r-- | erts/emulator/beam/erl_process.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_process.h b/erts/emulator/beam/erl_process.h index 799e49005c..f1570a835c 100644 --- a/erts/emulator/beam/erl_process.h +++ b/erts/emulator/beam/erl_process.h @@ -1483,6 +1483,7 @@ void erts_init_scheduling(int, int int erts_set_gc_state(Process *c_p, int enable); Eterm erts_sched_wall_time_request(Process *c_p, int set, int enable); +Eterm erts_system_check_request(Process *c_p); Eterm erts_gc_info_request(Process *c_p); Uint64 erts_get_proc_interval(void); Uint64 erts_ensure_later_proc_interval(Uint64); |