diff options
Diffstat (limited to 'xlators/mgmt')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-hooks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-hooks.c b/xlators/mgmt/glusterd/src/glusterd-hooks.c index 77efa6c57b3..7519ca2faae 100644 --- a/xlators/mgmt/glusterd/src/glusterd-hooks.c +++ b/xlators/mgmt/glusterd/src/glusterd-hooks.c @@ -585,8 +585,8 @@ glusterd_hooks_spawn_worker (xlator_t *this) conf = this->private; conf->hooks_priv = hooks_priv; - ret = pthread_create (&hooks_priv->worker, NULL, hooks_worker, - (void *)this); + ret = gf_thread_create (&hooks_priv->worker, NULL, hooks_worker, + (void *)this, "gdhooks"); if (ret) gf_msg (this->name, GF_LOG_CRITICAL, errno, GD_MSG_SPAWN_THREADS_FAIL, "Failed to spawn post " |