#pragma once
+#include <thread>
#include <pthread.h>
#include <folly/Range.h>
#endif
#endif
-inline bool setThreadName(pthread_t id, StringPiece name) {
+template <typename T>
+inline bool setThreadName(T id, StringPiece name) {
+ static_assert(
+ std::is_same<T, pthread_t>::value ||
+ std::is_same<T, std::thread::native_handle_type>::value,
+ "type must be pthread_t or std::thread::native_handle_type");
+ return false;
+}
+
#ifdef FOLLY_HAS_PTHREAD_SETNAME_NP
+template <>
+inline bool setThreadName(pthread_t id, StringPiece name) {
return 0 == pthread_setname_np(id, name.fbstr().substr(0, 15).c_str());
-#else
- return false;
-#endif
}
+#endif
inline bool setThreadName(StringPiece name) {
return setThreadName(pthread_self(), name);
token_bucket_test_LDADD = libgtest.la $(top_builddir)/libfolly.la $(top_builddir)/libfollybenchmark.la
TESTS += token_bucket_test
+thread_name_test_SOURCES = ThreadNameTest.cpp
+thread_name_test_LDADD = ligtest.la $(top_builddir)/libfolly.la
+TESTS += thread_name_test
+
futures_test_SOURCES = \
../futures/test/CollectTest.cpp \
--- /dev/null
+/*
+ * Copyright 2015 Facebook, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <thread>
+#include <folly/Baton.h>
+#include <folly/ThreadName.h>
+#include <gtest/gtest.h>
+
+using namespace std;
+using namespace folly;
+
+TEST(ThreadName, setThreadName_self) {
+ thread th([] {
+ EXPECT_TRUE(setThreadName("rockin-thread"));
+ });
+ SCOPE_EXIT { th.join(); };
+}
+
+TEST(ThreadName, setThreadName_other_pthread) {
+ Baton<> handle_set;
+ Baton<> let_thread_end;
+ pthread_t handle;
+ thread th([&] {
+ handle = pthread_self();
+ handle_set.post();
+ let_thread_end.wait();
+ });
+ SCOPE_EXIT { th.join(); };
+ handle_set.wait();
+ SCOPE_EXIT { let_thread_end.post(); };
+ EXPECT_TRUE(setThreadName(handle, "rockin-thread"));
+}
+
+TEST(ThreadName, setThreadName_other_native) {
+ Baton<> let_thread_end;
+ thread th([&] {
+ let_thread_end.wait();
+ });
+ SCOPE_EXIT { th.join(); };
+ SCOPE_EXIT { let_thread_end.post(); };
+ EXPECT_TRUE(setThreadName(th.native_handle(), "rockin-thread"));
+}