diff options
author | jhb <jhb@FreeBSD.org> | 2009-04-02 15:53:29 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2009-04-02 15:53:29 +0000 |
commit | 2ac9846671769c898c641aadf796d1e193dbc2af (patch) | |
tree | 2c75e2e0b6c4cfb97d566730b31413a5e73254e9 /lib/libc | |
parent | 9d4d27efa9d04f2b614641372d694b76f187e585 (diff) | |
download | FreeBSD-src-2ac9846671769c898c641aadf796d1e193dbc2af.zip FreeBSD-src-2ac9846671769c898c641aadf796d1e193dbc2af.tar.gz |
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.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/Symbol.map | 2 | ||||
-rw-r--r-- | lib/libc/sys/Symbol.map | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lib/libc/gen/Symbol.map b/lib/libc/gen/Symbol.map index afdecb5..fdc0449 100644 --- a/lib/libc/gen/Symbol.map +++ b/lib/libc/gen/Symbol.map @@ -223,8 +223,6 @@ FBSD_1.0 { posix_madvise; popen; pclose; - shm_open; - shm_unlink; pselect; psignal; raise; diff --git a/lib/libc/sys/Symbol.map b/lib/libc/sys/Symbol.map index 02ed73b..9e3c3c6 100644 --- a/lib/libc/sys/Symbol.map +++ b/lib/libc/sys/Symbol.map @@ -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; |