aboutsummaryrefslogtreecommitdiff
path: root/source/Host/linux/ThisThread.cpp
blob: 1c68c8ba16d7462419722c12e9144a5da2ceeceb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//===-- 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);
}