aboutsummaryrefslogtreecommitdiffstats
path: root/src/app_osmo_gapk.c
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2017-09-09 20:43:28 +0300
committerVadim Yanitskiy <axilirator@gmail.com>2017-12-31 12:20:59 +0100
commit2286a36ace915864bce935f49374f12cb9384e5d (patch)
tree80413e58e3badca18066c940f897f833984c6f10 /src/app_osmo_gapk.c
parent262ae0f98f21e91ff21f2082892f75a778d077a5 (diff)
procqueue: add human-readable name to osmo_gapk_pq
Since this change, every processing queue may optionally have an associated human-readable name. If name is not required, NULL should be passed to the osmo_gapk_pq_create().
Diffstat (limited to 'src/app_osmo_gapk.c')
-rw-r--r--src/app_osmo_gapk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app_osmo_gapk.c b/src/app_osmo_gapk.c
index 2ce0a31..6543eef 100644
--- a/src/app_osmo_gapk.c
+++ b/src/app_osmo_gapk.c
@@ -734,7 +734,7 @@ int main(int argc, char *argv[])
return rv;
/* Create processing queue */
- gs->pq = osmo_gapk_pq_create();
+ gs->pq = osmo_gapk_pq_create("main");
if (!gs->pq) {
rv = -ENOMEM;
LOGP(DAPP, LOGL_ERROR, "Error creating processing queue\n");