Merge pull request #27456 from wjwithagen/wjw-fix-rgw_amqp.cc

rgw: use the compatibilty function for pthread_setname

Reviewed-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
J. Eric Ivancich 2019-04-25 18:17:21 -04:00 committed by GitHub
commit 1b33207372
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include "include/compat.h"
#include "rgw_amqp.h"
#include <atomic>
#include <amqp.h>
@ -797,7 +798,7 @@ public:
// when a new connection is added.
connections.max_load_factor(10.0);
// give the runner thread a name for easier debugging
const auto rc = pthread_setname_np(runner.native_handle(), "amqp_manager");
const auto rc = ceph_pthread_setname(runner.native_handle(), "amqp_manager");
ceph_assert(rc==0);
}