sm6375-common: libqti-perfd-client: Move to C

* Why bothering with C++ mangling when we can just build it as a standard C library?

Change-Id: I45ea977edf7ea7fab6fece76f3049654a8d24c5d
This commit is contained in:
Sebastiano Barezzi 2024-07-18 12:56:42 +05:30 committed by Anand S
commit 8b6712433b
No known key found for this signature in database
GPG key ID: 3B2983FA448B3D61
2 changed files with 7 additions and 7 deletions

View file

@ -1,24 +0,0 @@
#define LOG_TAG "libqti-perfd-client"
#include <stdint.h>
#include <log/log.h>
extern "C" void perf_get_feedback() {}
extern "C" void perf_hint() {}
extern "C" int perf_lock_acq(int handle, int duration, int arg3[], int arg4) {
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;
}
extern "C" void perf_lock_cmd() {}
extern "C" int perf_lock_rel(int handle) {
ALOGI("perf_lock_rel: handle: %d", handle);
if (handle > 0)
return handle;
return 233;
}
extern "C" void perf_lock_use_profile() {}