History log of /external/qemu/iolooper-select.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
10bc04fd968d7f80258bf1eec665babf28e9e47d 16-Mar-2012 Vladimir Chtchetkine <vchtchetkine@google.com> Fixes a hack that was enabling multi-touch emulation on Mac.

The issue was that on Mac there is a bug in select() implementation, that caused select()
to fail with EINVAL on condition that timeout exceeds 100000000 secods. So the real fix
was to clamp timout value to that limit when select() is called on Mac.

Change-Id: Icb9ead00a0060028957af1e6e22911d5e8e231c6
/external/qemu/iolooper-select.c
1bb627cd086588d3f9650fac04f4034961caf9f1 18-Nov-2010 David 'Digit' Turner <digit@android.com> Fix generic looper implementation

+ allow looper_run() to return a value that indicates why
it exited.

+ add looper_runWithDeadline() and looper_runWithTimeout()
in the case where you want to run only for a limited time.

looper_runWithTimeout(looper,0) can be used to poll the
event state and return asap after firing all the callbacks.

+ fix iolooper_modify()

Change-Id: Iba3b0385a7fd8d90f4f3334ebf313e79267f7b3d
/external/qemu/iolooper-select.c
7a17b608de24e3aaf7d5ca030bb80a74dcc3baf9 17-Nov-2010 David 'Digit' Turner <digit@android.com> Implementation of event loop abstraction.

This patch adds "android/looper.h" which provides an

abstraction for event loops:
- android/looper-qemu.c implements it on top of the QEMU main event loop.
- android/looper-generic.c implements it on top of an IoLooper object.

The main idea is to move the UI-related code to use the abstraction
to handle timers and asynchronous (network) i/o.

NOTE: Code compiles but has not been heavily tested.

Change-Id: Ib6820c1b9a9950dc22449a332bc1b066a07af203
/external/qemu/iolooper-select.c
896e994d229edda8a858bb2174c789982231c4a0 16-Nov-2010 Vladimir Chtchetkine <vchtchetkine@google.com> Fix build break

Change-Id: I5b7e0c0b09e97cbdc80636c4a55177a82ac5936b
/external/qemu/iolooper-select.c
d8ba2ae8942abd9757338fc110ce6d215c486b1c 15-Nov-2010 Vladimir Chtchetkine <vchtchetkine@google.com> Implement absoule wait in iolooper

Change-Id: I514ffe11bcdac2fe3c6b44998892d9a604b9966f
/external/qemu/iolooper-select.c
9a33e8554225c82cd900208f88e8965bb085ab87 09-Nov-2010 Vladimir Chtchetkine <vchtchetkine@google.com> Implement -list-cores UI option

Also fixed a bug in iolooper-select.c (io_looper_del_write was buggy)
Also switched iolooper-select.c to use malloc/free instead of qemu_xxx

Change-Id: Ief47608f30a863d624af6363620e93e903cbdadc
/external/qemu/iolooper-select.c
9b98dbde344781e93e2bdcfa599428cda2fda41d 31-Jul-2010 David 'Digit' Turner <digit@android.com> Better detection of incorrect proxy values when starting the emulator.

Change-Id: I344f06fc16e051359669b8fe9b8dcec0ceca377d
/external/qemu/iolooper-select.c
cc19d3eeef59cbd354c1c618f7421d6fe5e0a098 19-Jul-2010 Ot ten Thije <ottenthije@google.com> Fixed infinite loop in qemu_aio_wait() affecting savevm.

Solved by porting a check on AIO operations from QEMU mainline
(in mainline commit a76bab4952a1539266490295fb50b78802c467c2).

Change-Id: I1d2011776f7cb90d81e36a5cf9381ef956d9a5b9
/external/qemu/iolooper-select.c
5d8f37ad78fc66901af50c762029a501561f3b23 14-Sep-2009 David 'Digit' Turner <digit@google.com> Merge upstream QEMU 10.0.50 into the Android source tree.

This change integrates many changes from the upstream QEMU sources.
Its main purpose is to enable correct ARMv6 and ARMv7 support to the
Android emulator. Due to the nature of the upstream code base, this
unfortunately also required changes to many other parts of the source.

Note that to ensure easier integrations in the future, some source files
and directories that have heavy Android-specific customization have been
renamed with an -android suffix. The original files are still there for
easier integration tracking, but *never* compiled. For example:

net.c net-android.c
qemu-char.c qemu-char-android.c
slirp/ slirp-android/
etc...

Tested on linux-x86, darwin-x86 and windows host machines.
/external/qemu/iolooper-select.c