numam-spdk/lib/jsonrpc/spdk_jsonrpc.map
Seth Howell 1f4f4cc75a lib/jsonrpc: add a map file.
There are several functions in the internal header that
are only used in the library that have kept the spdk prefix.

Add those to the suppression file since nobody in practice will
be using them.

Signed-off-by: Seth Howell <seth.howell@intel.com>
Change-Id: Iae1666c6f0bb853e62b89858037a5cded38c9b66
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2213
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
2020-05-11 12:29:07 +00:00

29 lines
672 B
Plaintext

{
global:
# public functions
spdk_jsonrpc_server_listen;
spdk_jsonrpc_server_poll;
spdk_jsonrpc_server_shutdown;
spdk_jsonrpc_get_conn;
spdk_jsonrpc_conn_add_close_cb;
spdk_jsonrpc_conn_del_close_cb;
spdk_jsonrpc_begin_result;
spdk_jsonrpc_end_result;
spdk_jsonrpc_send_error_response;
spdk_jsonrpc_send_error_response_fmt;
spdk_jsonrpc_begin_request;
spdk_jsonrpc_end_request;
spdk_jsonrpc_client_connect;
spdk_jsonrpc_client_close;
spdk_jsonrpc_client_create_request;
spdk_jsonrpc_client_free_request;
spdk_jsonrpc_client_send_request;
spdk_jsonrpc_client_poll;
spdk_jsonrpc_client_get_response;
spdk_jsonrpc_client_free_response;
local: *;
};