diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c index f2c01258774..7bada8607c7 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -235,7 +235,11 @@ int update_tick; | |||
| 235 | /* We could get this from param.h, but better not to depend on finding that. | 235 | /* We could get this from param.h, but better not to depend on finding that. |
| 236 | And better not to risk that it might define other symbols used in this | 236 | And better not to risk that it might define other symbols used in this |
| 237 | file. */ | 237 | file. */ |
| 238 | #ifdef FD_SETSIZE | ||
| 239 | #define MAXDESC FD_SETSIZE | ||
| 240 | #else | ||
| 238 | #define MAXDESC 64 | 241 | #define MAXDESC 64 |
| 242 | #endif | ||
| 239 | #define SELECT_TYPE fd_set | 243 | #define SELECT_TYPE fd_set |
| 240 | #else /* no FD_SET */ | 244 | #else /* no FD_SET */ |
| 241 | #define MAXDESC 32 | 245 | #define MAXDESC 32 |