aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include/odp_schedule_internal.h
diff options
context:
space:
mode:
authorMaxim Uvarov <maxim.uvarov@linaro.org>2014-02-03 16:51:18 +0400
committerMaxim Uvarov <maxim.uvarov@linaro.org>2014-02-05 16:53:00 +0400
commit396a5abb373a2fbbeb3f1e2557dd1b532cd8e228 (patch)
treef61ff6cee3d435043d62e032bf7bd97b3da5d771 /platform/linux-generic/include/odp_schedule_internal.h
parent0fa91e9c77ab562a4691a91536decda80f01ad6a (diff)
reorganize makefile
Reorganize source file folder, clean up Makefiles, rename odp.a to libodp.a, install to /usr/local by default Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'platform/linux-generic/include/odp_schedule_internal.h')
-rw-r--r--platform/linux-generic/include/odp_schedule_internal.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/platform/linux-generic/include/odp_schedule_internal.h b/platform/linux-generic/include/odp_schedule_internal.h
new file mode 100644
index 000000000..bd0ec27bb
--- /dev/null
+++ b/platform/linux-generic/include/odp_schedule_internal.h
@@ -0,0 +1,32 @@
+/* Copyright (c) 2013, Linaro Limited
+ * All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+
+
+#ifndef ODP_SCHEDULE_INTERNAL_H_
+#define ODP_SCHEDULE_INTERNAL_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+#include <odp_buffer.h>
+#include <odp_queue.h>
+
+
+odp_buffer_t odp_schedule_buffer_alloc(odp_queue_t queue);
+
+void odp_schedule_queue(odp_queue_t queue, int prio);
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+
+