Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Mar 2016 07:13:20 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r296714 - head/lib/libc/sys
Message-ID:  <201603120713.u2C7DKeF049504@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603120713.u2C7DKeF049504>