summaryrefslogtreecommitdiff
path: root/lib/frr_pthread.c
diff options
context:
space:
mode:
authorJafar Al-Gharaibeh <Jafaral@users.noreply.github.com>2017-06-30 10:00:43 -0500
committerGitHub <noreply@github.com>2017-06-30 10:00:43 -0500
commitb5a46fd2a6e047576ad6869e4fb4c4ac10fd3773 (patch)
tree147c039267a5b8ada019adccbcab8bbede446c4a /lib/frr_pthread.c
parent801ec168a41bbeed2d2935d0e396396356873cba (diff)
parent26eb0e4ff5031e791b4fd23d397dc15e1beab8d1 (diff)
Merge pull request #723 from qlyoung/fix-static-pipe-poker-buf
lib: more multithreading infra work
Diffstat (limited to 'lib/frr_pthread.c')
-rw-r--r--lib/frr_pthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/frr_pthread.c b/lib/frr_pthread.c
index 17bc82f5da..614c722be1 100644
--- a/lib/frr_pthread.c
+++ b/lib/frr_pthread.c
@@ -86,7 +86,7 @@ struct frr_pthread *frr_pthread_new(const char *name, unsigned int id,
XCALLOC(MTYPE_FRR_PTHREAD,
sizeof(struct frr_pthread));
fpt->id = id;
- fpt->master = thread_master_create();
+ fpt->master = thread_master_create(name);
fpt->start_routine = start_routine;
fpt->stop_routine = stop_routine;
fpt->name = XSTRDUP(MTYPE_FRR_PTHREAD, name);