From b384b543313b6b47a277c903e9d4fcd4343054fa Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Mon, 15 Jan 2018 01:08:33 -0800 Subject: session: add support for memfd segments - update segment manager and session api to work with both flavors of ssvm segments - added generic ssvm slave/master init and del functions - cleanup/refactor tcp_echo - fixed uses of svm fifo pool as vector Change-Id: Ieee8b163faa407da6e77e657a2322de213a9d2a0 Signed-off-by: Florin Coras --- src/vlibmemory/memory_client.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/vlibmemory/memory_client.h') diff --git a/src/vlibmemory/memory_client.h b/src/vlibmemory/memory_client.h index 5b4f090af9a..3fcca9e4b89 100644 --- a/src/vlibmemory/memory_client.h +++ b/src/vlibmemory/memory_client.h @@ -25,6 +25,7 @@ void vl_client_disconnect (void); int vl_client_api_map (const char *region_name); void vl_client_api_unmap (void); void vl_client_disconnect_from_vlib (void); +void vl_client_disconnect_from_vlib_no_unmap (void); int vl_client_connect_to_vlib (const char *svm_name, const char *client_name, int rx_queue_size); int vl_client_connect_to_vlib_no_rx_pthread (const char *svm_name, @@ -34,6 +35,7 @@ int vl_client_connect_to_vlib_no_map (const char *svm_name, const char *client_name, int rx_queue_size); void vl_client_install_client_message_handlers (void); +u8 vl_mem_client_is_connected (void); #endif /* SRC_VLIBMEMORY_MEMORY_CLIENT_H_ */ -- cgit 1.2.3-korg