summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/unlinkat.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2014-09-30 14:32:08 +0000
committerJoseph Myers <joseph@codesourcery.com>2014-09-30 14:32:08 +0000
commit754a15c61cd6834685386a134d0a0fed5f3ac4c1 (patch)
tree4b051a346648b6b62bc82ebcf1b0dfd3c8651eda /sysdeps/unix/sysv/linux/unlinkat.c
parentdc6fe23ba65714781a3d26270c132c0ca0ca5beb (diff)
downloadglibc-754a15c61cd6834685386a134d0a0fed5f3ac4c1.tar.gz
Move some *at definitions to syscalls.list (bug 14138).
Continuing the move of syscall definitions to syscalls.list, where the removal of support for old kernel versions has made this possible, this patch moves definitions of various *at functions in sysdeps/unix/sysv/linux/. These particular moves are straightforward: there are no #includes of these source files, no special architecture-specific versions, no special symbol version handling and no aliases. Each source file can be replaced by a single line in sysdeps/unix/sysv/linux/syscalls.list. Tested for x86_64. [BZ #14138] * sysdeps/unix/sysv/linux/syscalls.list (fchownat): New syscall. (linkat): Likewise. (mkdirat): Likewise. (readlinkat): Likewise. (renameat): Likewise. (symlinkat): Likewise. (unlinkat): Likewise. * sysdeps/unix/sysv/linux/fchownat.c: Remove file. * sysdeps/unix/sysv/linux/linkat.c: Likewise. * sysdeps/unix/sysv/linux/mkdirat.c: Likewise. * sysdeps/unix/sysv/linux/readlinkat.c: Likewise. * sysdeps/unix/sysv/linux/renameat.c: Likewise. * sysdeps/unix/sysv/linux/symlinkat.c: Likewise. * sysdeps/unix/sysv/linux/unlinkat.c: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/unlinkat.c')
-rw-r--r--sysdeps/unix/sysv/linux/unlinkat.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/sysdeps/unix/sysv/linux/unlinkat.c b/sysdeps/unix/sysv/linux/unlinkat.c
deleted file mode 100644
index 2d5bd74170..0000000000
--- a/sysdeps/unix/sysv/linux/unlinkat.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/* unlinkat -- Remove a link by relative name.
- Copyright (C) 2005-2014 Free Software Foundation, Inc.
- This file is part of the GNU C Library.
-
- The GNU C Library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- The GNU C Library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
-
-#include <errno.h>
-#include <fcntl.h>
-#include <stddef.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <sysdep.h>
-#include <unistd.h>
-
-
-/* Consider moving to syscalls.list. */
-
-/* Remove the link named NAME. */
-int
-unlinkat (fd, file, flag)
- int fd;
- const char *file;
- int flag;
-{
- return INLINE_SYSCALL (unlinkat, 3, fd, file, flag);
-}