eina debug - add comments to cpu debug using locks to pause sysmon

this is intended so leave comments saying so. coverity doesn't like it
with CID 1377549
This commit is contained in:
Carsten Haitzler 2017-07-23 18:43:58 +09:00
parent c69f9d2837
commit 6a65cb2f3c
1 changed files with 2 additions and 0 deletions

View File

@ -261,6 +261,7 @@ _cpufreq_on_cb(Eina_Debug_Session *session EINA_UNUSED, int cid EINA_UNUSED, voi
{
_eina_debug_sysmon_reset = 1;
_eina_debug_sysmon_active = 1;
// this is intended. taking this lock allows sysmon to run
eina_lock_release(&_sysmon_lock);
}
return EINA_TRUE;
@ -271,6 +272,7 @@ _cpufreq_off_cb(Eina_Debug_Session *session EINA_UNUSED, int cid EINA_UNUSED, vo
{
if (_eina_debug_sysmon_active)
{
// this is intended. taking this lock blocks sysmod from running
eina_lock_take(&_sysmon_lock);
_eina_debug_sysmon_active = 0;
}