qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] qemu vl.c vnc.c qemu_socket.h
@ 2006-04-30 22:53 Fabrice Bellard
  2006-04-30 23:04 ` Christian MICHON
  0 siblings, 1 reply; 5+ messages in thread
From: Fabrice Bellard @ 2006-04-30 22:53 UTC (permalink / raw)
  To: qemu-devel

CVSROOT:	/sources/qemu
Module name:	qemu
Branch: 	
Changes by:	Fabrice Bellard <bellard@savannah.gnu.org>	06/04/30 22:53:25

Modified files:
	.              : vl.c vnc.c 
Added files:
	.              : qemu_socket.h 

Log message:
	win32 socket fixes

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/qemu/vl.c.diff?tr1=1.179&tr2=1.180&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/qemu/qemu/vnc.c.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/qemu/qemu/qemu_socket.h?rev=1.1

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] qemu vl.c vnc.c qemu_socket.h
  2006-04-30 22:53 [Qemu-devel] qemu vl.c vnc.c qemu_socket.h Fabrice Bellard
@ 2006-04-30 23:04 ` Christian MICHON
  2006-04-30 23:08   ` Lonnie Mendez
  0 siblings, 1 reply; 5+ messages in thread
From: Christian MICHON @ 2006-04-30 23:04 UTC (permalink / raw)
  To: qemu-devel

ah! now it is working on winXP too. :)
(you only forgot ssize_t should be long instead for mingw32)

I see the old mouse sync problem is still here too...


On 5/1/06, Fabrice Bellard <fabrice@bellard.org> wrote:
> CVSROOT:        /sources/qemu
> Module name:    qemu
> Branch:
> Changes by:     Fabrice Bellard <bellard@savannah.gnu.org>      06/04/30 22:53:25
>
> Modified files:
>         .              : vl.c vnc.c
> Added files:
>         .              : qemu_socket.h
>
> Log message:
>         win32 socket fixes
>
> CVSWeb URLs:
> http://cvs.savannah.gnu.org/viewcvs/qemu/qemu/vl.c.diff?tr1=1.179&tr2=1.180&r1=text&r2=text
> http://cvs.savannah.gnu.org/viewcvs/qemu/qemu/vnc.c.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
> http://cvs.savannah.gnu.org/viewcvs/qemu/qemu/qemu_socket.h?rev=1.1
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>


--
Christian

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] qemu vl.c vnc.c qemu_socket.h
  2006-04-30 23:04 ` Christian MICHON
@ 2006-04-30 23:08   ` Lonnie Mendez
  2006-04-30 23:14     ` Christian MICHON
  0 siblings, 1 reply; 5+ messages in thread
From: Lonnie Mendez @ 2006-04-30 23:08 UTC (permalink / raw)
  To: qemu-devel

Christian MICHON wrote:

> I see the old mouse sync problem is still here too...

   Launch with -usbdevice tablet appended.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] qemu vl.c vnc.c qemu_socket.h
  2006-04-30 23:08   ` Lonnie Mendez
@ 2006-04-30 23:14     ` Christian MICHON
  2006-04-30 23:17       ` Christian MICHON
  0 siblings, 1 reply; 5+ messages in thread
From: Christian MICHON @ 2006-04-30 23:14 UTC (permalink / raw)
  To: qemu-devel

cool. I see now: it has nothing to do with usb being supported by
the guest (it's an old win3.0 in this case).

I can manage to calibrate by hand the mouse...

On 5/1/06, Lonnie Mendez <lmendez19@austin.rr.com> wrote:
> Christian MICHON wrote:
>
> > I see the old mouse sync problem is still here too...
>
>    Launch with -usbdevice tablet appended.
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>


--
Christian

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] qemu vl.c vnc.c qemu_socket.h
  2006-04-30 23:14     ` Christian MICHON
@ 2006-04-30 23:17       ` Christian MICHON
  0 siblings, 0 replies; 5+ messages in thread
From: Christian MICHON @ 2006-04-30 23:17 UTC (permalink / raw)
  To: qemu-devel

I talk too soon. Once re-enabling mouse acceleration, the sync
issue is back. Maybe I need a better/more modern guest like
XP ? :)

On 5/1/06, Christian MICHON <christian.michon@gmail.com> wrote:
> cool. I see now: it has nothing to do with usb being supported by
> the guest (it's an old win3.0 in this case).
>
> I can manage to calibrate by hand the mouse...
>
> On 5/1/06, Lonnie Mendez <lmendez19@austin.rr.com> wrote:
> > Christian MICHON wrote:
> >
> > > I see the old mouse sync problem is still here too...
> >
> >    Launch with -usbdevice tablet appended.
> >
> >
> > _______________________________________________
> > Qemu-devel mailing list
> > Qemu-devel@nongnu.org
> > http://lists.nongnu.org/mailman/listinfo/qemu-devel
> >
>
>
> --
> Christian
>


--
Christian

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-04-30 23:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-30 22:53 [Qemu-devel] qemu vl.c vnc.c qemu_socket.h Fabrice Bellard
2006-04-30 23:04 ` Christian MICHON
2006-04-30 23:08   ` Lonnie Mendez
2006-04-30 23:14     ` Christian MICHON
2006-04-30 23:17       ` Christian MICHON

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).