You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
810 B
26 lines
810 B
//===-- ThreadInfo.h -----------------------------------------------*- C++
|
|
//-*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLDB_TOOLS_DEBUGSERVER_SOURCE_MACOSX_THREADINFO_H
|
|
#define LLDB_TOOLS_DEBUGSERVER_SOURCE_MACOSX_THREADINFO_H
|
|
|
|
namespace ThreadInfo {
|
|
|
|
class QoS {
|
|
public:
|
|
QoS() : constant_name(), printable_name(), enum_value(UINT32_MAX) {}
|
|
bool IsValid() { return enum_value != UINT32_MAX; }
|
|
std::string constant_name;
|
|
std::string printable_name;
|
|
uint32_t enum_value;
|
|
};
|
|
};
|
|
|
|
#endif // LLDB_TOOLS_DEBUGSERVER_SOURCE_MACOSX_THREADINFO_H
|