diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-08-01 10:25:11 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-08-01 10:25:11 -0700 |
commit | 09c0ee5f8c2e52ff64347c39a586e8a23b9421e5 (patch) | |
tree | af4c6dff0a190939c50333f2d20c4cd1d4ec6b40 /sysdeps/unix/Makefile | |
parent | 7e66ee5142deda977163d0a858c3d2883cae3f07 (diff) | |
download | glibc-09c0ee5f8c2e52ff64347c39a586e8a23b9421e5.tar.gz glibc-09c0ee5f8c2e52ff64347c39a586e8a23b9421e5.tar.xz glibc-09c0ee5f8c2e52ff64347c39a586e8a23b9421e5.zip |
BZ#14138: Move getrlimit (ugetrlimit) syscall to syscalls.list.
Diffstat (limited to 'sysdeps/unix/Makefile')
-rw-r--r-- | sysdeps/unix/Makefile | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/sysdeps/unix/Makefile b/sysdeps/unix/Makefile index 9e95b567c8..dda3a3ee02 100644 --- a/sysdeps/unix/Makefile +++ b/sysdeps/unix/Makefile @@ -37,23 +37,29 @@ $(objpfx)stub-syscalls.c: $(common-objpfx)sysd-syscalls \ $(..)sysdeps/unix/Makefile $(make-target-directory) (for call in $(unix-stub-syscalls); do \ + call=$${call%%@*}; \ echo "#define $$call RENAMED_$$call"; \ done; \ echo '#include <errno.h>'; \ + echo '#include <shlib-compat.h>'; \ for call in $(unix-stub-syscalls); do \ + call=$${call%%@*}; \ echo "#undef $$call"; \ done; \ echo 'long int _no_syscall (void)'; \ echo '{ __set_errno (ENOSYS); return -1L; }'; \ for call in $(unix-stub-syscalls); do \ case $$call in \ - *@@*) ver=$${call##*@}; call=$${call%%*@}; \ - echo "strong_alias (_no_syscall, $${call}_$${ver})"; \ - echo "default_symbol_version \ - ($${call}_$${ver}, $$call, $$ver);" ;; \ - *@*) ver=$${call##*@}; call=$${call%%*@}; \ - echo "strong_alias (_no_syscall, $${call}_$${ver})"; \ - echo "symbol_version ($${call}_$${ver}, $$call, $$ver);" ;; \ + *@@*) \ + ver=$${call##*@}; call=$${call%%@*}; ver=$${ver//./_}; \ + echo "strong_alias (_no_syscall, __$${call}_$${ver})"; \ + echo "versioned_symbol (libc, __$${call}_$${ver}, $$call, $$ver);"\ + ;; \ + *@*) \ + ver=$${call##*@}; call=$${call%%@*}; ver=$${ver//./_}; \ + echo "strong_alias (_no_syscall, __$${call}_$${ver})"; \ + echo "compat_symbol (libc, __$${call}_$${ver}, $$call, $$ver);" \ + ;; \ *) echo "weak_alias (_no_syscall, $$call)"; \ echo "stub_warning ($$call)"; \ echo "weak_alias (_no_syscall, __GI_$$call)" ;; \ |