Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / mach / hurd / unlinkat.c
blob31cc477b3938ac25cb79bd665889bf2c47bad9b2
1 /* unlinkat -- Remove a name relative to an open directory. Hurd version.
2 Copyright (C) 2006-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <fcntl.h>
21 #include <stddef.h>
22 #include <unistd.h>
23 #include <hurd.h>
24 #include <hurd/fd.h>
27 /* Remove the link named NAME. */
28 int
29 unlinkat (fd, name, flag)
30 int fd;
31 const char *name;
32 int flag;
34 error_t err;
35 file_t dir;
36 const char *file;
38 if ((flag &~ AT_REMOVEDIR) != 0)
40 __set_errno (EINVAL);
41 return -1;
44 dir = __directory_name_split_at (fd, name, (char **) &file);
45 if (dir == MACH_PORT_NULL)
46 return -1;
48 err = ((flag & AT_REMOVEDIR) ? __dir_rmdir : __dir_unlink) (dir, file);
49 __mach_port_deallocate (__mach_task_self (), dir);
51 if (err)
52 return __hurd_fail (err);
53 return 0;