Mercurial > hg > xemacs-beta
comparison src/sysproc.h @ 428:3ecd8885ac67 r21-2-22
Import from CVS: tag r21-2-22
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:28:15 +0200 |
parents | |
children | 8de8e3f6228a |
comparison
equal
deleted
inserted
replaced
427:0a0253eac470 | 428:3ecd8885ac67 |
---|---|
1 /* | |
2 Copyright (C) 1995 Free Software Foundation, Inc. | |
3 | |
4 This file is part of XEmacs. | |
5 | |
6 XEmacs is free software; you can redistribute it and/or modify it | |
7 under the terms of the GNU General Public License as published by the | |
8 Free Software Foundation; either version 2, or (at your option) any | |
9 later version. | |
10 | |
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
14 for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with XEmacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
19 Boston, MA 02111-1307, USA. */ | |
20 | |
21 /* Synched up with: Not really in FSF. */ | |
22 | |
23 #ifdef HAVE_VFORK_H | |
24 # include <vfork.h> | |
25 #endif | |
26 | |
27 #include "systime.h" /* necessary for sys/resource.h; also gets the | |
28 FD_* defines on some systems. */ | |
29 #ifndef WINDOWSNT | |
30 #include <sys/resource.h> | |
31 #endif | |
32 | |
33 #if !defined (NO_SUBPROCESSES) | |
34 | |
35 #ifdef HAVE_SOCKETS /* TCP connection support, if kernel can do it */ | |
36 # include <sys/types.h> /* AJK */ | |
37 # include <sys/socket.h> | |
38 # include <netdb.h> | |
39 # include <netinet/in.h> | |
40 # include <arpa/inet.h> | |
41 #ifdef NEED_NET_ERRNO_H | |
42 #include <net/errno.h> | |
43 #endif /* NEED_NET_ERRNO_H */ | |
44 #elif defined (SKTPAIR) | |
45 # include <sys/socket.h> | |
46 #endif /* HAVE_SOCKETS */ | |
47 | |
48 /* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */ | |
49 #ifdef HAVE_BROKEN_INET_ADDR | |
50 # define IN_ADDR struct in_addr | |
51 # define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1) | |
52 #else | |
53 # if (LONGBITS > 32) | |
54 # define IN_ADDR unsigned int | |
55 # else | |
56 # define IN_ADDR unsigned long | |
57 # endif | |
58 # define NUMERIC_ADDR_ERROR (numeric_addr == (IN_ADDR) -1) | |
59 #endif | |
60 | |
61 /* Define first descriptor number available for subprocesses. */ | |
62 #define FIRST_PROC_DESC 3 | |
63 | |
64 #ifdef IRIS | |
65 # include <sys/sysmacros.h> /* for "minor" */ | |
66 #endif /* not IRIS */ | |
67 | |
68 #endif /* !NO_SUBPROCESSES */ | |
69 | |
70 #ifdef AIX | |
71 #include <sys/select.h> | |
72 #endif | |
73 | |
74 #ifdef FD_SET | |
75 | |
76 /* We could get this from param.h, but better not to depend on finding that. | |
77 And better not to risk that it might define other symbols used in this | |
78 file. */ | |
79 # ifdef FD_SETSIZE | |
80 # define MAXDESC FD_SETSIZE | |
81 # else | |
82 # define MAXDESC 64 | |
83 # endif /* FD_SETSIZE */ | |
84 # define SELECT_TYPE fd_set | |
85 | |
86 #else /* no FD_SET */ | |
87 | |
88 # define MAXDESC 32 | |
89 # define SELECT_TYPE int | |
90 | |
91 /* Define the macros to access a single-int bitmap of descriptors. */ | |
92 # define FD_SET(n, p) (*(p) |= (1 << (n))) | |
93 # define FD_CLR(n, p) (*(p) &= ~(1 << (n))) | |
94 # define FD_ISSET(n, p) (*(p) & (1 << (n))) | |
95 # define FD_ZERO(p) (*(p) = 0) | |
96 | |
97 #endif /* no FD_SET */ | |
98 | |
99 int poll_fds_for_input (SELECT_TYPE mask); | |
100 | |
101 #ifdef MSDOS | |
102 /* #include <process.h> */ | |
103 /* Damn that local process.h! Instead we can define P_WAIT ourselves. */ | |
104 #define P_WAIT 1 | |
105 #endif |