ObjFW  Diff

Differences From Artifact [90468a0a65]:

To Artifact [4bdac00ac8]:


485
486
487
488
489
490
491



492
493
494
495
496
497
498
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501







+
+
+







	FD_COPY(&exceptfds, &exceptfds_);
# else
	readfds_ = readfds;
	writefds_ = writefds;
	exceptfds_ = exceptfds;
# endif

	tv.tv_sec = timeout / 1000;
	tv.tv_usec = (timeout % 1000) * 1000;

	if (select(nfds, &readfds_, &writefds_, &exceptfds_,
	    (timeout != -1 ? &tv : NULL)) < 1)
		return NO;

	if (FD_ISSET(cancelFd[0], &readfds_)) {
		char buf;
#ifndef _WIN32