aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-stub-ws.c
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2019-01-18 18:28:56 +0000
committerGerrit Code Review <gerrit@automotivelinux.org>2019-01-18 18:28:56 +0000
commit77bf8a30c07a4ab5690337ed362dae4414e590fb (patch)
tree253c2429541ce9cd2532602f96bea368355cdeb4 /src/afb-stub-ws.c
parenta4bb03e57aa2f8b71840ec384356f6c283989d73 (diff)
parent194031d38a246e1aec441cb6acaaf6915c07b59b (diff)
Merge changes from topic 'spec-2089'guppy_6.99.4guppy/6.99.46.99.4
* changes: hello3: Fix warning unused variable afb-hsrv: Avoid call to getnameinfo jobs: Remove conditionnal REMOVE_SYSTEMD_EVENT jobs: Separate internal threads from others jobs: Refactor event loop handling afb-proto-ws: Serialize incoming message
Diffstat (limited to 'src/afb-stub-ws.c')
-rw-r--r--src/afb-stub-ws.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afb-stub-ws.c b/src/afb-stub-ws.c
index 5dfacb73..7ec2d63d 100644
--- a/src/afb-stub-ws.c
+++ b/src/afb-stub-ws.c
@@ -646,9 +646,9 @@ static void on_hangup(void *closure)
}
}
-static int enqueue_processing(void (*callback)(int signum, void* arg), void *arg)
+static int enqueue_processing(struct afb_proto_ws *proto, void (*callback)(int signum, void* arg), void *arg)
{
- return jobs_queue(NULL, 0, callback, arg);
+ return jobs_queue(proto, 0, callback, arg);
}
/*****************************************************/