mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
ba6754f275
PR: 11305 Submitted by: Pedro F. Giffuni <pfgiffun@bachue.usc.unal.edu.co>
15 lines
585 B
Plaintext
15 lines
585 B
Plaintext
--- ../alt/lib/libxview/notify/ndet_fd.c Tue Jun 29 07:18:08 1993
|
|
+++ lib/libxview/notify/ndet_fd.c Sat Jul 26 00:42:21 1997
|
|
@@ -27,8 +27,9 @@
|
|
#define GETDTABLESIZE() \
|
|
(dtablesize_cache?dtablesize_cache:(dtablesize_cache=(int)sysconf(_SC_OPEN_MAX)))
|
|
#else
|
|
-#define GETDTABLESIZE() \
|
|
- (dtablesize_cache?dtablesize_cache:(dtablesize_cache=getdtablesize()))
|
|
+#define GETDTABLESIZE() \
|
|
+ (dtablesize_cache ? dtablesize_cache : \
|
|
+ (dtablesize_cache = MIN(getdtablesize(), FD_SETSIZE)))
|
|
#endif SVR4
|
|
|
|
static int ndet_fd_table_size; /* Number of descriptor slots
|