Index: ossp-pkg/pth/pth_high.c RCS File: /v/ossp/cvs/ossp-pkg/pth/pth_high.c,v rcsdiff -q -kk '-r1.101' '-r1.102' -u '/v/ossp/cvs/ossp-pkg/pth/pth_high.c,v' 2>/dev/null --- 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 */