Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Qualcomm BoostFramework()

Quite often I am receiving this kind of message in my logcat monitor:

12-13 06:09:57.819 25049-25049/? V/BoostFramework: BoostFramework() : mPerf = com.qualcomm.qti.Performance@9759349

Can someone explain what does it mean and what is triggering the BoostFramework() function?

Thanks.

like image 990
Dmitrj Avatar asked Dec 13 '16 04:12

Dmitrj


1 Answers

Just stumbled upon this unanswered question. BoostFramework is a vendor library provided by Qualcomm for phones using their chips. It allows system components (and applications which implement their API) to temporarily boost the CPU frequency for increased processing power, e.g. when the camera is taking a picture.

Since you are probably not dealing with system code, you can ignore it.

like image 186
zhicong Avatar answered Nov 16 '22 05:11

zhicong