Date: Thu, 2 Apr 2009 15:53:30 +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: r190641 - in head/lib/libc: gen sys Message-ID: <200904021553.n32FrUEC068918@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhb Date: Thu Apr 2 15:53:29 2009 New Revision: 190641 URL: http://svn.freebsd.org/changeset/base/190641 Log: Properly update the shm_open/shm_unlink symbol versioning metadata after these functions were moved into the kernel: - Move the version entries from gen/ to sys/. Since the ABI of the actual routines did not change, I'm still exporting them as FBSD 1.0 on purpose. - Add FBSD-private versions for the _ and __sys_ variants. Modified: head/lib/libc/gen/Symbol.map head/lib/libc/sys/Symbol.map Modified: head/lib/libc/gen/Symbol.map ============================================================================== --- head/lib/libc/gen/Symbol.map Thu Apr 2 13:04:17 2009 (r190640) +++ head/lib/libc/gen/Symbol.map Thu Apr 2 15:53:29 2009 (r190641) @@ -223,8 +223,6 @@ FBSD_1.0 { posix_madvise; popen; pclose; - shm_open; - shm_unlink; pselect; psignal; raise; Modified: head/lib/libc/sys/Symbol.map ============================================================================== --- head/lib/libc/sys/Symbol.map Thu Apr 2 13:04:17 2009 (r190640) +++ head/lib/libc/sys/Symbol.map Thu Apr 2 15:53:29 2009 (r190641) @@ -265,6 +265,8 @@ FBSD_1.0 { setsockopt; settimeofday; setuid; + shm_open; + shm_unlink; shmat; shmctl; shmdt; @@ -876,6 +878,10 @@ FBSDprivate_1.0 { __sys_settimeofday; _setuid; __sys_setuid; + _shm_open; + __sys_shm_open; + _shm_unlink; + __sys_shm_unlink; _shmat; __sys_shmat; _shmctl;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200904021553.n32FrUEC068918>