All template params for PriorityMPMCQueue
[folly.git] / folly / ThreadName.h
1 /*
2  * Copyright 2017 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #pragma once
18
19 #include <thread>
20 #include <type_traits>
21
22 #include <pthread.h>
23
24 #include <folly/Range.h>
25 #include <folly/Traits.h>
26
27 namespace folly {
28
29 // This looks a bit weird, but it's necessary to avoid
30 // having an undefined compiler function called.
31 #if defined(__GLIBC__) && !defined(__APPLE__) && !defined(__ANDROID__)
32 #if __GLIBC_PREREQ(2, 12)
33 // has pthread_setname_np(pthread_t, const char*) (2 params)
34 #define FOLLY_HAS_PTHREAD_SETNAME_NP_THREAD_NAME 1
35 #endif
36 #endif
37 #if defined(__APPLE__) && defined(__MAC_OS_X_VERSION_MIN_REQUIRED)
38 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060
39 // has pthread_setname_np(const char*) (1 param)
40 #define FOLLY_HAS_PTHREAD_SETNAME_NP_NAME 1
41 #endif
42 #endif
43
44 template <typename T>
45 inline bool setThreadName(T /* id */, StringPiece /* name */) {
46   static_assert(
47       std::is_same<T, pthread_t>::value ||
48           std::is_same<T, std::thread::id>::value ||
49           std::is_same<T, std::thread::native_handle_type>::value,
50       "type must be pthread_t, std::thread::id or "
51       "std::thread::native_handle_type");
52   return false;
53 }
54
55 #ifdef FOLLY_HAS_PTHREAD_SETNAME_NP_THREAD_NAME
56 template <>
57 inline bool setThreadName(pthread_t id, StringPiece name) {
58   return 0 == pthread_setname_np(id, name.fbstr().substr(0, 15).c_str());
59 }
60 #endif
61
62 #ifdef FOLLY_HAS_PTHREAD_SETNAME_NP_NAME
63 template <>
64 inline bool setThreadName(pthread_t id, StringPiece name) {
65   // Since OS X 10.6 it is possible for a thread to set its own name,
66   // but not that of some other thread.
67   if (pthread_equal(pthread_self(), id)) {
68     return 0 == pthread_setname_np(name.fbstr().c_str());
69   }
70   return false;
71 }
72 #endif
73
74 template <
75     typename = folly::_t<std::enable_if<
76         std::is_same<pthread_t, std::thread::native_handle_type>::value>>>
77 inline bool setThreadName(std::thread::id id, StringPiece name) {
78   static_assert(
79       sizeof(std::thread::native_handle_type) == sizeof(decltype(id)),
80       "This assumes std::thread::id is a thin wrapper around "
81       "std::thread::native_handle_type, but that doesn't appear to be true.");
82   // In most implementations, std::thread::id is a thin wrapper around
83   // std::thread::native_handle_type, which means we can do unsafe things to
84   // extract it.
85   pthread_t ptid = *reinterpret_cast<pthread_t*>(&id);
86   return setThreadName(ptid, name);
87 }
88
89 inline bool setThreadName(StringPiece name) {
90   return setThreadName(pthread_self(), name);
91 }
92
93 }