* fhandler.h (fhandler_socket::wait): Set default timeout to INFINITE.

This commit is contained in:
Corinna Vinschen 2006-07-04 09:26:49 +00:00
parent 66e7d55998
commit 6dbfd8f9ba
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-07-04 Corinna Vinschen <corinna@vinschen.de>
* fhandler.h (fhandler_socket::wait): Set default timeout to INFINITE.
2006-07-03 Corinna Vinschen <corinna@vinschen.de>
* autoload.cc (NtQueryEaFile): Define.

View File

@ -425,7 +425,7 @@ class fhandler_socket: public fhandler_base
} status;
bool prepare (HANDLE &event, long event_mask);
int wait (HANDLE event, int flags, DWORD timeout = 10);
int wait (HANDLE event, int flags, DWORD timeout = INFINITE);
void release (HANDLE event);
public: