2021-05-13 03:05:45 -04:00
|
|
|
#define LOG_TAG "libqti-perfd-client"
|
|
|
|
|
2020-08-12 08:14:36 -04:00
|
|
|
#include <stdint.h>
|
2021-05-13 03:05:45 -04:00
|
|
|
#include <log/log.h>
|
2020-08-12 08:14:36 -04:00
|
|
|
|
2021-06-19 20:49:03 -04:00
|
|
|
void perf_get_feedback() {}
|
|
|
|
void perf_hint() {}
|
|
|
|
int perf_lock_acq(int handle, int duration, int arg3[], int arg4) {
|
2021-05-13 03:05:45 -04:00
|
|
|
ALOGI("perf_lock_acq: handle: %d, duration: %d, arg3[0]: %d, arg4: %d",
|
|
|
|
handle, duration, arg3[0], arg4);
|
|
|
|
if (handle > 0)
|
|
|
|
return handle;
|
|
|
|
|
|
|
|
return 233;
|
|
|
|
}
|
2021-06-19 20:49:03 -04:00
|
|
|
void perf_lock_cmd() {}
|
|
|
|
int perf_lock_rel(int handle) {
|
2021-05-13 03:05:45 -04:00
|
|
|
ALOGI("perf_lock_rel: handle: %d", handle);
|
|
|
|
if (handle > 0)
|
|
|
|
return handle;
|
|
|
|
|
|
|
|
return 233;
|
|
|
|
}
|
2021-06-19 20:49:03 -04:00
|
|
|
void perf_lock_use_profile() {}
|