summaryrefslogtreecommitdiffstats
path: root/ui/test
diff options
context:
space:
mode:
Diffstat (limited to 'ui/test')
-rw-r--r--ui/test/discover-test.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/ui/test/discover-test.c b/ui/test/discover-test.c
index f3ef746..ae43b1e 100644
--- a/ui/test/discover-test.c
+++ b/ui/test/discover-test.c
@@ -44,15 +44,18 @@ static struct discover_client_ops client_ops = {
int main(void)
{
struct discover_client *client;
+ struct waitset *waitset;
- client = discover_client_init(&client_ops, NULL);
+ waitset = waitset_create(NULL);
+
+ client = discover_client_init(waitset, &client_ops, NULL);
if (!client)
return -1;
for (;;) {
int rc;
- rc = discover_client_process(client);
+ rc = waiter_poll(waitset);
if (rc)
break;
}
OpenPOWER on IntegriCloud