service: fix C++ linkage
authorLevend Sayar <levendsayar@gmail.com>
Thu, 9 Jul 2020 12:32:16 +0000 (15:32 +0300)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 9 Jul 2020 14:23:57 +0000 (16:23 +0200)
"extern C" define is added to rte_service_component.h file
to be able to use in C++ context

Fixes: 21698354c832 ("service: introduce service cores concept")
Cc: stable@dpdk.org
Signed-off-by: Levend Sayar <levendsayar@gmail.com>
Acked-by: Harry van Haaren <harry.van.haaren@intel.com>
lib/librte_eal/include/rte_service_component.h

index b75aba1..9e66ee7 100644 (file)
@@ -9,6 +9,11 @@
  * Include this file if you are writing a component that requires CPU cycles to
  * operate, and you wish to run the component using service cores
  */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #include <rte_compat.h>
 #include <rte_service.h>
 
@@ -130,4 +135,8 @@ int32_t rte_service_init(void);
  */
 void rte_service_finalize(void);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* _SERVICE_PRIVATE_H_ */