diff options
author | David 'Digit' Turner <digit@android.com> | 2011-03-17 14:57:51 +0100 |
---|---|---|
committer | David 'Digit' Turner <digit@android.com> | 2011-04-11 18:08:11 +0200 |
commit | f9e333ade2529f257ced6bcff8e5824cb07eacf9 (patch) | |
tree | c3ea65717a284ae744764b4ecf8c5b745ea3415d /android/main-common.c | |
parent | 2086c639648ccecc9081705a279249ce939d818b (diff) | |
download | external_qemu-f9e333ade2529f257ced6bcff8e5824cb07eacf9.zip external_qemu-f9e333ade2529f257ced6bcff8e5824cb07eacf9.tar.gz external_qemu-f9e333ade2529f257ced6bcff8e5824cb07eacf9.tar.bz2 |
Simplify async utils by removing extra LoopIo parameter.
This patch removes the LoopIo parameter from asyncReader_run() by
storing the initial pointer passed to asyncReader_init() inside the
object itself.
Same treatment is performed for:
- AsyncReader
- AsyncWriter
- AsyncLineReader
- AsyncConnector
- AsyncConsoleConnect
Change-Id: Ic74b817e4c326230ca1d38b3a5d8c4790c4f90c1
Diffstat (limited to 'android/main-common.c')
-rw-r--r-- | android/main-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/main-common.c b/android/main-common.c index b237116..05a2cb0 100644 --- a/android/main-common.c +++ b/android/main-common.c @@ -972,7 +972,7 @@ coreconsole_io_func(void* opaque, int fd, unsigned events) { CoreConsole* cc = opaque; AsyncStatus status; - status = asyncConsoleConnector_run(cc->connector, cc->io); + status = asyncConsoleConnector_run(cc->connector); if (status == ASYNC_COMPLETE) { cc->ok = 1; } |