Commit 0f2f4b8b authored by Seth Howell's avatar Seth Howell Committed by Tomasz Zawadzki
Browse files

lib/conf: add a map file for this library.



Signed-off-by: default avatarSeth Howell <seth.howell@intel.com>
Change-Id: If9e44d65362f164b35f5a15f310214ab1d7ff3a7
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1704


Community-CI: Mellanox Build Bot
Community-CI: Broadcom CI
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarShuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: default avatarAleksey Marchuk <alexeymar@mellanox.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
parent bc0180f6
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -41,4 +41,6 @@ SO_SUFFIX := $(SO_VER).$(SO_MINOR)
C_SRCS = conf.c
LIBNAME = conf

SPDK_MAP_FILE = $(abspath $(CURDIR)/spdk_conf.map)

include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk

lib/conf/spdk_conf.map

0 → 100644
+22 −0
Original line number Diff line number Diff line
{
	global:

	# Public functions
	spdk_conf_allocate;
	spdk_conf_free;
	spdk_conf_read;
	spdk_conf_find_section;
	spdk_conf_first_section;
	spdk_conf_next_section;
	spdk_conf_section_match_prefix;
	spdk_conf_section_get_name;
	spdk_conf_section_get_num;
	spdk_conf_section_get_nmval;
	spdk_conf_section_get_nval;
	spdk_conf_section_get_val;
	spdk_conf_section_get_intval;
	spdk_conf_section_get_boolval;
	spdk_conf_set_as_default;

	local: *;
};