* ioctl.cc (ioctl): Make third argument optional.

* include/sys/ioctl.h: Ditto in declaration.
	* dtable.cc (dtable::init_std_file_from_handle): Revert previous
	bogus patch.
	* window.cc (WndProc): Raise SIGURG instead of SIGIO in case of FD_OOB
	message.
This commit is contained in:
Corinna Vinschen
2002-01-06 09:28:13 +00:00
parent 9125cbd7cf
commit d6154fb758
5 changed files with 29 additions and 9 deletions

View File

@@ -18,6 +18,8 @@ details. */
#include <limits.h>
#include <wingdi.h>
#include <winuser.h>
#define USE_SYS_TYPES_FD_SET
#include <winsock2.h>
#include <unistd.h>
#include "cygerrno.h"
#include "perprocess.h"
@@ -61,7 +63,10 @@ WndProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
}
return 0;
case WM_ASYNCIO:
raise (SIGIO);
if (WSAGETSELECTEVENT(lParam) == FD_OOB)
raise (SIGURG);
else
raise (SIGIO);
return 0;
default:
return DefWindowProc (hwnd, uMsg, wParam, lParam);