--- pth_high.c 2002/11/08 15:35:30 1.101
+++ pth_high.c 2002/11/08 16:20:15 1.102
@@ -273,10 +273,10 @@
}
/* Pth variant of select(2) */
-int pth_select(int nfds, fd_set *readfds, fd_set *writefds,
- fd_set *exceptfds, struct timeval *timeout)
+int pth_select(int nfds, fd_set *rfds, fd_set *wfds,
+ fd_set *efds, struct timeval *timeout)
{
- return pth_select_ev(nfds, readfds, writefds, exceptfds, timeout, NULL);
+ return pth_select_ev(nfds, rfds, wfds, efds, timeout, NULL);
}
/* Pth variant of select(2) with extra events */
|