aboutsummaryrefslogtreecommitdiffstats
path: root/android/boot-properties.c
diff options
context:
space:
mode:
authorVladimir Chtchetkine <vchtchetkine@google.com>2011-08-25 14:55:50 -0700
committerAndroid Code Review <code-review@android.com>2011-08-25 14:55:50 -0700
commitb89bfd2f50d7e1925b0402a51eb8751328e8e2c9 (patch)
tree2c4fac98fc43da2f21dc8f7c534fab5bca410085 /android/boot-properties.c
parent4ffadf474d07bc3a5f1c9f61a69eef420bcb18a0 (diff)
parent4c414820910ba8553cab7ff30188575f972a9896 (diff)
downloadexternal_qemu-b89bfd2f50d7e1925b0402a51eb8751328e8e2c9.zip
external_qemu-b89bfd2f50d7e1925b0402a51eb8751328e8e2c9.tar.gz
external_qemu-b89bfd2f50d7e1925b0402a51eb8751328e8e2c9.tar.bz2
Merge "Enable qemud clients to pass connection parameters to emulator."
Diffstat (limited to 'android/boot-properties.c')
-rw-r--r--android/boot-properties.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/android/boot-properties.c b/android/boot-properties.c
index 1a86010..41b9b4d 100644
--- a/android/boot-properties.c
+++ b/android/boot-properties.c
@@ -319,11 +319,12 @@ boot_property_client_recv( void* opaque,
static QemudClient*
boot_property_service_connect( void* opaque,
QemudService* serv,
- int channel )
+ int channel,
+ const char* client_param )
{
QemudClient* client;
- client = qemud_client_new( serv, channel, NULL,
+ client = qemud_client_new( serv, channel, client_param, NULL,
boot_property_client_recv,
NULL, NULL, NULL );