Signed-off-by: Javier Garcia <javier.garcia@voltanet.io>
PCEP_DEBUG("Initializing pcep module controller");
/* Create and start the FRR pthread */
- *fpt = frr_pthread_new(&attr, "PCEP thread", "pcep");
+ *fpt = frr_pthread_new(&attr, "PCEP thread", "pcep_controller");
if (*fpt == NULL) {
flog_err(EC_PATH_SYSTEM_CALL,
"failed to initialize PCEP thread");
.start = pcep_lib_pthread_start_passthrough,
.stop = pcep_lib_pthread_stop_cb};
struct frr_pthread *fpt =
- frr_pthread_new(&fpt_attr, thread_name, "pcep");
+ frr_pthread_new(&fpt_attr, thread_name, "pcep_lib");
if (fpt == NULL) {
return 1;
}