universal7580: libshims: add missing fence symbols to libexynoscamera shim
authorStricted <info@stricted.net>
Sat, 22 Sep 2018 02:16:49 +0000 (04:16 +0200)
committerJan Altensen <info@stricted.net>
Thu, 15 Aug 2019 09:11:27 +0000 (11:11 +0200)
Change-Id: Ifa0529aa56ad3c8ef144e582c007068263e26878

libshims/libexynoscamera/Android.mk
libshims/libexynoscamera/Fence.cpp [new file with mode: 0644]

index 6ebf58e5d52cd16bde522af492bc6ee6704d304b..60afa8fbe0d67ba34a59a9c9373440c0ae3064e6 100644 (file)
@@ -16,7 +16,7 @@
 LOCAL_PATH := $(call my-dir)
 
 include $(CLEAR_VARS)
-LOCAL_SRC_FILES := GraphicBuffer.cpp
+LOCAL_SRC_FILES := GraphicBuffer.cpp Fence.cpp
 
 LOCAL_C_INCLUDES := frameworks/native/include
 
diff --git a/libshims/libexynoscamera/Fence.cpp b/libshims/libexynoscamera/Fence.cpp
new file mode 100644 (file)
index 0000000..7be4c9d
--- /dev/null
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 2018 The LineageOS Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/* status_t android::Fence::wait(int timeout); */
+extern "C" int _ZN7android5Fence4waitEi(int timeout);
+
+/* status_t android::Fence::wait(unsigned int timeout); */
+extern "C" int _ZN7android5Fence4waitEj(unsigned int timeout)
+{
+    return _ZN7android5Fence4waitEi(static_cast<int>(timeout));
+}