[NFC][Py Reformat] Added more commits to .git-blame-ignore-revs
[llvm-project.git] / libc / src / pthread / pthread_setname_np.cpp
blob425c25bd3a5f7dc78470608f9516788b16625a89
1 //===-- Linux implementation of the pthread_setname_np function -----------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "pthread_setname_np.h"
11 #include "src/__support/CPP/string_view.h"
12 #include "src/__support/common.h"
13 #include "src/__support/threads/thread.h"
15 #include <pthread.h>
17 namespace __llvm_libc {
19 static_assert(sizeof(pthread_t) == sizeof(__llvm_libc::Thread),
20 "Mismatch between pthread_t and internal Thread.");
22 LLVM_LIBC_FUNCTION(int, pthread_setname_np, (pthread_t th, const char *name)) {
23 auto *thread = reinterpret_cast<__llvm_libc::Thread *>(&th);
24 return thread->set_name(cpp::string_view(name));
27 } // namespace __llvm_libc