ObjFW  Diff

Differences From Artifact [3ce8ac4b7d]:

To Artifact [624d0c1dc4]:


235
236
237
238
239
240
241




242

243
244
245
246
247
248
249
235
236
237
238
239
240
241
242
243
244
245

246
247
248
249
250
251
252
253







+
+
+
+
-
+







{
	OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
	BOOL foundInCache = NO;
	OFStream **cArray;
	size_t i, count;
#ifdef OF_HAVE_POLL
	struct pollfd *fds_c = [fds cArray];
	/*
	 * There is no way to find out the maximum number of fds, so we just
	 * cast.
	 */
	size_t nfds = [fds count];
	nfds_t nfds = (nfds_t)[fds count];
#else
	fd_set readfds_;
	fd_set writefds_;
	fd_set exceptfds_;
	struct timeval tv;
#endif