svn commit: r296714 - head/lib/libc/sys

John Baldwin jhb at FreeBSD.org
Sat Mar 12 07:13:21 UTC 2016


Author: jhb
Date: Sat Mar 12 07:13:20 2016
New Revision: 296714
URL: https://svnweb.freebsd.org/changeset/base/296714

Log:
  Remove Symbol.map entries for old AIO system calls for FreeBSD 6 compat.
  
  These entries should have never been present since they only exist for
  compat with FreeBSD 6.x (and older) binaries.  This was missed in r296572.
  Technically this breaks the ABI by removing versioned symbols.  However,
  no binaries should be linked against these symbols.  No release has
  shipped with a header that contained a prototype for these functions.
  
  Reviewed by:	kib
  Differential Revision:	https://reviews.freebsd.org/D5615

Modified:
  head/lib/libc/sys/Symbol.map

Modified: head/lib/libc/sys/Symbol.map
==============================================================================
--- head/lib/libc/sys/Symbol.map	Sat Mar 12 06:50:16 2016	(r296713)
+++ head/lib/libc/sys/Symbol.map	Sat Mar 12 07:13:20 2016	(r296714)
@@ -200,9 +200,6 @@ FBSD_1.0 {
 	nstat;
 	ntp_adjtime;
 	ntp_gettime;
-	oaio_read;
-	oaio_write;
-	olio_listio;
 	open;
 	pathconf;
 	pipe;
@@ -809,12 +806,6 @@ FBSDprivate_1.0 {
 	__sys_ntp_adjtime;
 	_ntp_gettime;
 	__sys_ntp_gettime;
-	_oaio_read;
-	__sys_oaio_read;
-	_oaio_write;
-	__sys_oaio_write;
-	_olio_listio;
-	__sys_olio_listio;
 	_open;
 	__sys_open;
 	_openat;


More information about the svn-src-all mailing list