diff options
author | Lukas Larsson <[email protected]> | 2013-05-15 17:08:52 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2013-05-31 11:00:41 +0200 |
commit | fb4440038ea305929d7f46c0ea651994b412483f (patch) | |
tree | b7edd3f2aeff4e7f01974797608a28041256df57 /erts/emulator/beam/erl_process.h | |
parent | 1932b1f4a9f4a8d083f9047b3ba1637dfea1c6d9 (diff) | |
download | otp-fb4440038ea305929d7f46c0ea651994b412483f.tar.gz otp-fb4440038ea305929d7f46c0ea651994b412483f.tar.bz2 otp-fb4440038ea305929d7f46c0ea651994b412483f.zip |
Replace gc stat lock with sched spec data
Diffstat (limited to 'erts/emulator/beam/erl_process.h')
-rw-r--r-- | erts/emulator/beam/erl_process.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_process.h b/erts/emulator/beam/erl_process.h index 5a1f6bbe8d..7e1af9923b 100644 --- a/erts/emulator/beam/erl_process.h +++ b/erts/emulator/beam/erl_process.h @@ -420,6 +420,11 @@ typedef struct { } ErtsSchedWallTime; typedef struct { + Uint64 reclaimed; + Uint64 garbage_cols; +} ErtsGCInfo; + +typedef struct { int sched; erts_aint32_t aux_work; } ErtsDelayedAuxWorkWakeupJob; @@ -507,6 +512,7 @@ struct ErtsSchedulerData_ { Uint64 reductions; ErtsSchedWallTime sched_wall_time; + ErtsGCInfo gc_info; ErtsPortTaskHandle nosuspend_port_task_handle; #ifdef ERTS_DO_VERIFY_UNUSED_TEMP_ALLOC @@ -1126,6 +1132,7 @@ void erts_early_init_scheduling(int); void erts_init_scheduling(int, int); Eterm erts_sched_wall_time_request(Process *c_p, int set, int enable); +Eterm erts_gc_info_request(Process *c_p); Uint64 erts_get_proc_interval(void); Uint64 erts_ensure_later_proc_interval(Uint64); Uint64 erts_step_proc_interval(void); |