summaryrefslogtreecommitdiff
path: root/src/pl_list.c
diff options
context:
space:
mode:
authorAnthony Stange <stange@google.com>2019-11-15 02:05:30 -0800
committerandroid-build-merger <android-build-merger@google.com>2019-11-15 02:05:30 -0800
commit3b85c51d2792e75fbc3dba18b2a8cd8669068d2f (patch)
treea1dda0b33986404edd6c17685c91df8cbd94d57f /src/pl_list.c
parentb01fa3f23affa99a4c5207f9081d1d7c13965f4d (diff)
parentd6d6e3bba244e40e6043bd687f4cacf090a767b5 (diff)
downloadfastrpc-3b85c51d2792e75fbc3dba18b2a8cd8669068d2f.tar.gz
Import fastrpc code from upstream
am: d6d6e3bba2 Change-Id: Id8b1f1d165d7e362f2150f5f1f69007d45de2265
Diffstat (limited to 'src/pl_list.c')
-rw-r--r--src/pl_list.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/pl_list.c b/src/pl_list.c
new file mode 100644
index 0000000..fc2dd90
--- /dev/null
+++ b/src/pl_list.c
@@ -0,0 +1,40 @@
+/*
+ * Copyright (c) 2019, The Linux Foundation. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met:
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided
+ * with the distribution.
+ * * Neither the name of The Linux Foundation nor the names of its
+ * contributors may be used to endorse or promote products derived
+ * from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+ * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+ * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
+ * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+#include "platform_libs.h"
+
+PL_DEP(gpls)
+PL_DEP(listener_android)
+
+struct platform_lib* (*pl_list[])(void) = {
+ PL_ENTRY(gpls),
+ PL_ENTRY(listener_android),
+ 0
+};
+
+