aboutsummaryrefslogtreecommitdiff
path: root/platform/linux/host_link.cc
diff options
context:
space:
mode:
Diffstat (limited to 'platform/linux/host_link.cc')
-rw-r--r--platform/linux/host_link.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/platform/linux/host_link.cc b/platform/linux/host_link.cc
index 6490cc2a..8d7d20fe 100644
--- a/platform/linux/host_link.cc
+++ b/platform/linux/host_link.cc
@@ -18,13 +18,17 @@
namespace chre {
-void HostLink::flushMessagesSentByNanoapp(uint64_t /* appId */) {
+void HostLink::flushMessagesSentByNanoapp(uint64_t appId) {
// TODO: implement
}
-bool HostLink::sendMessage(const MessageToHost * /* message */) {
+bool HostLink::sendMessage(const MessageToHost *message) {
// TODO: implement
return false;
}
+void HostLink::sendLogMessage(const char *logMessage, size_t logMessageSize) {
+ // TODO: implement
+}
+
} // namespace chre