summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2017-12-19 10:18:43 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2017-12-19 10:20:18 +0900
commit29ce7550eb3fa2f1c5f4c82d30e5e625b2c60058 (patch)
treee5d9bb5a7e035843e81ed92edcc3caed7d0a410b
parent90f30ea418b75df94bd4693dfecde77e9b40f29c (diff)
downloadefl-29ce7550eb3fa2f1c5f4c82d30e5e625b2c60058.tar.gz
eina: Add missing eina_internal.h
-rw-r--r--src/Makefile_Eina.am1
-rw-r--r--src/lib/eina/eina_internal.h16
2 files changed, 17 insertions, 0 deletions
diff --git a/src/Makefile_Eina.am b/src/Makefile_Eina.am
index bd74cdcb64..186bd1e8e1 100644
--- a/src/Makefile_Eina.am
+++ b/src/Makefile_Eina.am
@@ -391,6 +391,7 @@ EXTRA_DIST2 += \
lib/eina/eina_strbuf_template_c.x \
lib/eina/eina_binbuf_template_c.x \
lib/eina/eina_inline_private.h \
+lib/eina/eina_internal.h \
tests/eina/sample.gpx \
tests/eina/eina_suite.x \
lib/eina/eina_config.h.in \
diff --git a/src/lib/eina/eina_internal.h b/src/lib/eina/eina_internal.h
new file mode 100644
index 0000000000..391ad944f3
--- /dev/null
+++ b/src/lib/eina/eina_internal.h
@@ -0,0 +1,16 @@
+#ifndef EINA_INTERNAL_H
+#define EINA_INTERNAL_H
+
+/*
+ * eina_internal.h
+ *
+ * Lists public functions that are meant for internal use by EFL only and are
+ * not stable API.
+ */
+
+/**
+ * @brief Cancels all pending promise/futures.
+ */
+EAPI void __eina_promise_cancel_all(void);
+
+#endif