コード例 #1
0
ファイル: mon_temp.c プロジェクト: AsherBond/core
void MonTempGatherData(double *cf_this)
{
    if (ACPI && GetAcpi(cf_this))
    {
        return;
    }

    if (LMSENSORS && GetLMSensors(cf_this))
    {
        return;
    }
}
コード例 #2
0
ファイル: mon_temp.c プロジェクト: joegen/sipx-externals
void MonTempGatherData(double *cf_this)
{
    CfDebug("GatherSensorData()\n");

#if defined(__linux__)
    if (ACPI && GetAcpi(cf_this))
    {
        return;
    }

    if (LMSENSORS && GetLMSensors(cf_this))
    {
        return;
    }
#endif
}