forked from OSchip/llvm-project
30 lines
731 B
C++
30 lines
731 B
C++
//===-- ThisThread.cpp ------------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/Host/HostNativeThread.h"
|
|
#include "lldb/Host/ThisThread.h"
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include <pthread.h>
|
|
|
|
using namespace lldb_private;
|
|
|
|
void
|
|
ThisThread::SetName(llvm::StringRef name)
|
|
{
|
|
HostNativeThread::SetName(::pthread_self(), name);
|
|
}
|
|
|
|
void
|
|
ThisThread::GetName(llvm::SmallVectorImpl<char> &name)
|
|
{
|
|
HostNativeThread::GetName(::pthread_self(), name);
|
|
}
|