Fixed some bugs after merge;
[ZeXOS.git] / libc / include / sys / select.h
blob54a394e9d4d4099085c401eb13596a4a521f4c03
1 /*
2 * ZeX/OS
3 * Copyright (C) 2009 Tomas 'ZeXx86' Jedrzejek (zexx86@zexos.org)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program 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
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef _SELECT_H
20 #define _SELECT_H
22 #include <sys/time.h>
24 #ifndef FD_SETSIZE
25 #define FD_SETSIZE 64
26 #endif
28 typedef struct fd_set
30 unsigned int count;
31 int fd[FD_SETSIZE];
32 } fd_set;
34 #define FD_ZERO(set) _fd_zero(set)
35 #define FD_ISSET(fd, set) _fd_isset(fd, set)
36 #define FD_SET(fd, set) _fd_set(fd, set)
37 #define FD_CLR(fd, set) _fd_clr(fd, set)
39 extern int select (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct timeval *timeout);
41 #endif