This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: New patch


It there a method to check for content on the queue, like PeekMessage? 
 Would it make sense to have one?

-----Original Message-----
From: Sergey Okhapkin [mailto:sos@prospect.com.ru]
Sent: Wednesday, April 22, 1998 1:43 AM
To: 'Gnu-Win32'
Cc: 'cygwin32-developers@cygnus.com'
Subject: New patch


windows.diff

- /dev/windows device implementation - an access to windows message 
queue with unix-style calls.


The following unix-style calls are supported:

	open ("/dev/windows", flags, mode=0)
		- create a unix fd for message queue.
		  O_NONBLOCK flag controls the read() call behavior.

	read (fd, buf, len)
		- return next message from queue. buf must point to MSG
		  structure, len must be >= sizeof (MSG). If read is set to
		  non-blocking and the queue is empty, read call returns -1
		  immediately with errno set to EAGAIN, otherwise it blocks
		  untill the message will be received.

	write (fd, buf, len)
		- send a message pointed by buf. len argument ignored.

	ioctl (fd, command, *param)
		- control read()/write() behavior.
		ioctl (fd, WINDOWS_POST, NULL) - write() will PostMessage();
		ioctl (fd, WINDOWS_SEND, NULL) - write() will SendMessage();
		ioctl (fd, WINDOWS_HWND, &hWnd)- read() messages for hWnd window.

	select() call marks read fd when any message posted to queue.



- Changes to compile cygwinb19.dll with egcs.
- Fixed a bug with mtime field of stat structure on fat partitions.

--
Sergey Okhapkin, http://www.lexa.ru/sos
Moscow, Russia.

application/ms-tnef


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]