Added pipe() syscall; Fixed some memleaks;
[ZeXOS.git] / kernel / lib / stdio / close.c
blobb77924999fcae94838f1c311a9e30eebf936c168
1 /*
2 * ZeX/OS
3 * Copyright (C) 2007 Tomas 'ZeXx86' Jedrzejek (zexx86@gmail.com)
4 * Copyright (C) 2008 Tomas 'ZeXx86' Jedrzejek (zexx86@gmail.com)
5 * Copyright (C) 2009 Martin 'povik' Poviser (martin.povik@gmail.com)
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include <system.h>
23 #include <file.h>
24 #include <fd.h>
25 #include <net/socket.h>
26 #include <pipe.h>
28 int close (int fd)
30 fd_t *f = fd_get (fd);
32 if (!f)
33 return 0;
35 if (f->flags & FD_SOCK) // socket close
36 sclose (fd);
38 if (f->flags & FD_PIPE) // pipe close
39 pipe_close (fd);
41 f->id = 0;
42 f->flags = 0;
43 f->e = 0;
45 /* delete old file descriptor from fd_list */
46 f->next->prev = f->prev;
47 f->prev->next = f->next;
49 return 1;