- Add symbol versioning to libprocstat.

Suggested by:	kib
This commit is contained in:
Stanislav Sedov 2011-05-14 22:15:38 +00:00
parent 087a4650e2
commit 2f7e4c22b9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=221931
3 changed files with 24 additions and 0 deletions

View file

@ -12,6 +12,9 @@ SRCS= cd9660.c \
smbfs.c \
udf.c
VERSION_DEF= ${.CURDIR}/Versions.def
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
INCS= libprocstat.h
CFLAGS+= -I. -I${.CURDIR} -D_KVM_VNODE
SHLIB_MAJOR= 1

View file

@ -0,0 +1,16 @@
/*
* $FreeBSD$
*/
FBSD_1.2 {
procstat_close;
procstat_freefiles;
procstat_freeprocs;
procstat_get_pipe_info;
procstat_get_pts_info;
procstat_get_socket_info;
procstat_get_vnode_info;
procstat_getfiles;
procstat_getprocs;
procstat_open_kvm;
procstat_open_sysctl;
};

View file

@ -0,0 +1,5 @@
# $FreeBSD$
# This version was first added to 9.0-current.
FBSD_1.2 {
};