New unwind-protect flavors to better type-check C callbacks.
[bpt/emacs.git] / src / sysselect.h
CommitLineData
3ef31cb5 1/* sysselect.h - System-dependent definitions for the select function.
ab422c4d 2 Copyright (C) 1995, 2001-2013 Free Software Foundation, Inc.
3ef31cb5
KH
3
4This file is part of GNU Emacs.
5
b9b1cc14 6GNU Emacs is free software: you can redistribute it and/or modify
3ef31cb5 7it under the terms of the GNU General Public License as published by
b9b1cc14
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
3ef31cb5
KH
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
b9b1cc14 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
3ef31cb5 18
0d23c240 19#ifndef DOS_NT
3ef31cb5 20#include <sys/select.h>
388cdec0 21#endif
3ef31cb5 22
a583bbef
EZ
23/* The w32 build defines select stuff in w32.h, which is included
24 where w32 needs it, but not where sysselect.h is included. The w32
25 definitions in w32.h are incompatible with the below. */
26#ifndef WINDOWSNT
3ef31cb5
KH
27#ifdef FD_SET
28#ifdef FD_SETSIZE
29#define MAXDESC FD_SETSIZE
30#else
31#define MAXDESC 64
32#endif
33#define SELECT_TYPE fd_set
34#else /* no FD_SET */
35#define MAXDESC 32
36#define SELECT_TYPE int
37
38/* Define the macros to access a single-int bitmap of descriptors. */
39#define FD_SET(n, p) (*(p) |= (1 << (n)))
40#define FD_CLR(n, p) (*(p) &= ~(1 << (n)))
41#define FD_ISSET(n, p) (*(p) & (1 << (n)))
42#define FD_ZERO(p) (*(p) = 0)
43#endif /* no FD_SET */
a583bbef 44#endif /* not WINDOWSNT */
3ef31cb5 45
4624371d 46#if !defined (HAVE_SELECT)
3ef31cb5
KH
47#define select sys_select
48#endif
0d23c240 49
c9240d7a 50#ifdef MSDOS
0d23c240
EZ
51#define pselect sys_select
52#endif