svn commit: r314533 - head/lib/libsbuf
Scott Long
scottl at FreeBSD.org
Thu Mar 2 01:39:24 UTC 2017
Author: scottl
Date: Thu Mar 2 01:39:23 2017
New Revision: 314533
URL: https://svnweb.freebsd.org/changeset/base/314533
Log:
Expose the sbuf_putbuf() symbol to libsbuf. There are a few other symbols
that are present but not exposed, like get/set/clear flags, not sure if they
need to be exposed at this point.
Sponsored by: Netflix
Modified:
head/lib/libsbuf/Symbol.map
head/lib/libsbuf/Version.def
Modified: head/lib/libsbuf/Symbol.map
==============================================================================
--- head/lib/libsbuf/Symbol.map Thu Mar 2 01:28:15 2017 (r314532)
+++ head/lib/libsbuf/Symbol.map Thu Mar 2 01:39:23 2017 (r314533)
@@ -31,3 +31,8 @@ FBSD_1.3 {
FBSD_1.4 {
sbuf_hexdump;
};
+
+FBSD_1.5 {
+ sbuf_putbuf;
+};
+
Modified: head/lib/libsbuf/Version.def
==============================================================================
--- head/lib/libsbuf/Version.def Thu Mar 2 01:28:15 2017 (r314532)
+++ head/lib/libsbuf/Version.def Thu Mar 2 01:39:23 2017 (r314533)
@@ -8,3 +8,6 @@ FBSD_1.3 {
FBSD_1.4 {
} FBSD_1.3;
+
+FBSD_1.5 {
+} FBSD_1.4;
More information about the svn-src-all
mailing list