[lldb][NFC] Fix all formatting errors in .cpp file headers
Summary:
A *.cpp file header in LLDB (and in LLDB) should like this:
```
//===-- TestUtilities.cpp -------------------------------------------------===//
```
However in LLDB most of our source files have arbitrary changes to this format and
these changes are spreading through LLDB as folks usually just use the existing
source files as templates for their new files (most notably the unnecessary
editor language indicator `-*- C++ -*-` is spreading and in every review
someone is pointing out that this is wrong, resulting in people pointing out that this
is done in the same way in other files).
This patch removes most of these inconsistencies including the editor language indicators,
all the different missing/additional '-' characters, files that center the file name, missing
trailing `===//` (mostly caused by clang-format breaking the line).
Reviewers: aprantl, espindola, jfb, shafik, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: dexonsmith, wuzish, emaste, sdardis, nemanjai, kbarton, MaskRay, atanasyan, arphaman, jfb, abidh, jsji, JDevlieghere, usaxena95, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D73258
2020-01-24 08:23:27 +01:00
|
|
|
//===-- SBAttachInfo.cpp --------------------------------------------------===//
|
2015-02-16 00:04:19 +00:00
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// 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
|
2015-02-16 00:04:19 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "lldb/API/SBAttachInfo.h"
|
2019-03-06 00:06:00 +00:00
|
|
|
#include "SBReproducerPrivate.h"
|
2019-03-06 00:05:55 +00:00
|
|
|
#include "Utils.h"
|
2015-02-16 00:04:19 +00:00
|
|
|
#include "lldb/API/SBFileSpec.h"
|
|
|
|
#include "lldb/API/SBListener.h"
|
|
|
|
#include "lldb/Target/Process.h"
|
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
2019-03-06 00:06:00 +00:00
|
|
|
SBAttachInfo::SBAttachInfo() : m_opaque_sp(new ProcessAttachInfo()) {
|
|
|
|
LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBAttachInfo);
|
|
|
|
}
|
2015-02-16 00:04:19 +00:00
|
|
|
|
|
|
|
SBAttachInfo::SBAttachInfo(lldb::pid_t pid)
|
|
|
|
: m_opaque_sp(new ProcessAttachInfo()) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_CONSTRUCTOR(SBAttachInfo, (lldb::pid_t), pid);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
m_opaque_sp->SetProcessID(pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
SBAttachInfo::SBAttachInfo(const char *path, bool wait_for)
|
|
|
|
: m_opaque_sp(new ProcessAttachInfo()) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_CONSTRUCTOR(SBAttachInfo, (const char *, bool), path, wait_for);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
if (path && path[0])
|
2018-11-01 21:05:36 +00:00
|
|
|
m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native);
|
2015-02-16 00:04:19 +00:00
|
|
|
m_opaque_sp->SetWaitForLaunch(wait_for);
|
|
|
|
}
|
|
|
|
|
|
|
|
SBAttachInfo::SBAttachInfo(const char *path, bool wait_for, bool async)
|
|
|
|
: m_opaque_sp(new ProcessAttachInfo()) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_CONSTRUCTOR(SBAttachInfo, (const char *, bool, bool), path,
|
|
|
|
wait_for, async);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
if (path && path[0])
|
2018-11-01 21:05:36 +00:00
|
|
|
m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native);
|
2015-02-16 00:04:19 +00:00
|
|
|
m_opaque_sp->SetWaitForLaunch(wait_for);
|
2015-10-05 22:58:37 +00:00
|
|
|
m_opaque_sp->SetAsync(async);
|
2015-02-16 00:04:19 +00:00
|
|
|
}
|
|
|
|
|
2015-10-05 22:58:37 +00:00
|
|
|
SBAttachInfo::SBAttachInfo(const SBAttachInfo &rhs)
|
|
|
|
: m_opaque_sp(new ProcessAttachInfo()) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_CONSTRUCTOR(SBAttachInfo, (const lldb::SBAttachInfo &), rhs);
|
|
|
|
|
2019-03-06 00:05:55 +00:00
|
|
|
m_opaque_sp = clone(rhs.m_opaque_sp);
|
2015-10-05 22:58:37 +00:00
|
|
|
}
|
|
|
|
|
2020-02-17 22:57:06 -08:00
|
|
|
SBAttachInfo::~SBAttachInfo() = default;
|
2015-02-16 00:04:19 +00:00
|
|
|
|
|
|
|
lldb_private::ProcessAttachInfo &SBAttachInfo::ref() { return *m_opaque_sp; }
|
|
|
|
|
|
|
|
SBAttachInfo &SBAttachInfo::operator=(const SBAttachInfo &rhs) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD(lldb::SBAttachInfo &,
|
|
|
|
SBAttachInfo, operator=,(const lldb::SBAttachInfo &), rhs);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
if (this != &rhs)
|
2019-03-06 00:05:55 +00:00
|
|
|
m_opaque_sp = clone(rhs.m_opaque_sp);
|
2019-04-03 21:31:22 +00:00
|
|
|
return LLDB_RECORD_RESULT(*this);
|
2015-02-16 00:04:19 +00:00
|
|
|
}
|
|
|
|
|
2019-03-06 00:06:00 +00:00
|
|
|
lldb::pid_t SBAttachInfo::GetProcessID() {
|
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::pid_t, SBAttachInfo, GetProcessID);
|
|
|
|
|
|
|
|
return m_opaque_sp->GetProcessID();
|
|
|
|
}
|
2015-02-16 00:04:19 +00:00
|
|
|
|
|
|
|
void SBAttachInfo::SetProcessID(lldb::pid_t pid) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetProcessID, (lldb::pid_t), pid);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
m_opaque_sp->SetProcessID(pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SBAttachInfo::GetResumeCount() {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBAttachInfo, GetResumeCount);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
return m_opaque_sp->GetResumeCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBAttachInfo::SetResumeCount(uint32_t c) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetResumeCount, (uint32_t), c);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
m_opaque_sp->SetResumeCount(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *SBAttachInfo::GetProcessPluginName() {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(const char *, SBAttachInfo, GetProcessPluginName);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
return m_opaque_sp->GetProcessPluginName();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBAttachInfo::SetProcessPluginName(const char *plugin_name) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetProcessPluginName, (const char *),
|
|
|
|
plugin_name);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
return m_opaque_sp->SetProcessPluginName(plugin_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBAttachInfo::SetExecutable(const char *path) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetExecutable, (const char *), path);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
if (path && path[0])
|
2018-11-01 21:05:36 +00:00
|
|
|
m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native);
|
2015-02-16 00:04:19 +00:00
|
|
|
else
|
|
|
|
m_opaque_sp->GetExecutableFile().Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBAttachInfo::SetExecutable(SBFileSpec exe_file) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetExecutable, (lldb::SBFileSpec),
|
|
|
|
exe_file);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
if (exe_file.IsValid())
|
|
|
|
m_opaque_sp->GetExecutableFile() = exe_file.ref();
|
|
|
|
else
|
|
|
|
m_opaque_sp->GetExecutableFile().Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SBAttachInfo::GetWaitForLaunch() {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBAttachInfo, GetWaitForLaunch);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
return m_opaque_sp->GetWaitForLaunch();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBAttachInfo::SetWaitForLaunch(bool b) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetWaitForLaunch, (bool), b);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
m_opaque_sp->SetWaitForLaunch(b);
|
|
|
|
}
|
|
|
|
|
2015-10-05 22:58:37 +00:00
|
|
|
void SBAttachInfo::SetWaitForLaunch(bool b, bool async) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetWaitForLaunch, (bool, bool), b,
|
|
|
|
async);
|
|
|
|
|
2015-10-05 22:58:37 +00:00
|
|
|
m_opaque_sp->SetWaitForLaunch(b);
|
|
|
|
m_opaque_sp->SetAsync(async);
|
|
|
|
}
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
bool SBAttachInfo::GetIgnoreExisting() {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBAttachInfo, GetIgnoreExisting);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
return m_opaque_sp->GetIgnoreExisting();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBAttachInfo::SetIgnoreExisting(bool b) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetIgnoreExisting, (bool), b);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
m_opaque_sp->SetIgnoreExisting(b);
|
|
|
|
}
|
|
|
|
|
2019-03-06 00:06:00 +00:00
|
|
|
uint32_t SBAttachInfo::GetUserID() {
|
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBAttachInfo, GetUserID);
|
2015-02-16 00:04:19 +00:00
|
|
|
|
2019-03-06 00:06:00 +00:00
|
|
|
return m_opaque_sp->GetUserID();
|
|
|
|
}
|
2015-02-16 00:04:19 +00:00
|
|
|
|
2019-03-06 00:06:00 +00:00
|
|
|
uint32_t SBAttachInfo::GetGroupID() {
|
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBAttachInfo, GetGroupID);
|
2015-02-16 00:04:19 +00:00
|
|
|
|
2019-03-06 00:06:00 +00:00
|
|
|
return m_opaque_sp->GetGroupID();
|
|
|
|
}
|
2015-02-16 00:04:19 +00:00
|
|
|
|
2019-03-06 00:06:00 +00:00
|
|
|
bool SBAttachInfo::UserIDIsValid() {
|
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBAttachInfo, UserIDIsValid);
|
2015-02-16 00:04:19 +00:00
|
|
|
|
2019-03-06 00:06:00 +00:00
|
|
|
return m_opaque_sp->UserIDIsValid();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SBAttachInfo::GroupIDIsValid() {
|
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBAttachInfo, GroupIDIsValid);
|
|
|
|
|
|
|
|
return m_opaque_sp->GroupIDIsValid();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBAttachInfo::SetUserID(uint32_t uid) {
|
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetUserID, (uint32_t), uid);
|
|
|
|
|
|
|
|
m_opaque_sp->SetUserID(uid);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBAttachInfo::SetGroupID(uint32_t gid) {
|
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetGroupID, (uint32_t), gid);
|
|
|
|
|
|
|
|
m_opaque_sp->SetGroupID(gid);
|
|
|
|
}
|
2015-02-16 00:04:19 +00:00
|
|
|
|
|
|
|
uint32_t SBAttachInfo::GetEffectiveUserID() {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBAttachInfo, GetEffectiveUserID);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
return m_opaque_sp->GetEffectiveUserID();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SBAttachInfo::GetEffectiveGroupID() {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBAttachInfo, GetEffectiveGroupID);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
return m_opaque_sp->GetEffectiveGroupID();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SBAttachInfo::EffectiveUserIDIsValid() {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBAttachInfo, EffectiveUserIDIsValid);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
return m_opaque_sp->EffectiveUserIDIsValid();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SBAttachInfo::EffectiveGroupIDIsValid() {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBAttachInfo, EffectiveGroupIDIsValid);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
return m_opaque_sp->EffectiveGroupIDIsValid();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBAttachInfo::SetEffectiveUserID(uint32_t uid) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetEffectiveUserID, (uint32_t), uid);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
m_opaque_sp->SetEffectiveUserID(uid);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBAttachInfo::SetEffectiveGroupID(uint32_t gid) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetEffectiveGroupID, (uint32_t), gid);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
m_opaque_sp->SetEffectiveGroupID(gid);
|
|
|
|
}
|
|
|
|
|
|
|
|
lldb::pid_t SBAttachInfo::GetParentProcessID() {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::pid_t, SBAttachInfo, GetParentProcessID);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
return m_opaque_sp->GetParentProcessID();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBAttachInfo::SetParentProcessID(lldb::pid_t pid) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetParentProcessID, (lldb::pid_t),
|
|
|
|
pid);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
m_opaque_sp->SetParentProcessID(pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SBAttachInfo::ParentProcessIDIsValid() {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(bool, SBAttachInfo, ParentProcessIDIsValid);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
return m_opaque_sp->ParentProcessIDIsValid();
|
|
|
|
}
|
|
|
|
|
|
|
|
SBListener SBAttachInfo::GetListener() {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD_NO_ARGS(lldb::SBListener, SBAttachInfo, GetListener);
|
|
|
|
|
|
|
|
return LLDB_RECORD_RESULT(SBListener(m_opaque_sp->GetListener()));
|
2015-02-16 00:04:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SBAttachInfo::SetListener(SBListener &listener) {
|
2019-03-06 00:06:00 +00:00
|
|
|
LLDB_RECORD_METHOD(void, SBAttachInfo, SetListener, (lldb::SBListener &),
|
|
|
|
listener);
|
|
|
|
|
2015-02-16 00:04:19 +00:00
|
|
|
m_opaque_sp->SetListener(listener.GetSP());
|
|
|
|
}
|
2019-03-19 17:13:13 +00:00
|
|
|
|
|
|
|
namespace lldb_private {
|
|
|
|
namespace repro {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
void RegisterMethods<SBAttachInfo>(Registry &R) {
|
|
|
|
LLDB_REGISTER_CONSTRUCTOR(SBAttachInfo, ());
|
|
|
|
LLDB_REGISTER_CONSTRUCTOR(SBAttachInfo, (lldb::pid_t));
|
|
|
|
LLDB_REGISTER_CONSTRUCTOR(SBAttachInfo, (const char *, bool));
|
|
|
|
LLDB_REGISTER_CONSTRUCTOR(SBAttachInfo, (const char *, bool, bool));
|
|
|
|
LLDB_REGISTER_CONSTRUCTOR(SBAttachInfo, (const lldb::SBAttachInfo &));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBAttachInfo &,
|
|
|
|
SBAttachInfo, operator=,(const lldb::SBAttachInfo &));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::pid_t, SBAttachInfo, GetProcessID, ());
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetProcessID, (lldb::pid_t));
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBAttachInfo, GetResumeCount, ());
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetResumeCount, (uint32_t));
|
|
|
|
LLDB_REGISTER_METHOD(const char *, SBAttachInfo, GetProcessPluginName, ());
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetProcessPluginName,
|
|
|
|
(const char *));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetExecutable, (const char *));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetExecutable, (lldb::SBFileSpec));
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBAttachInfo, GetWaitForLaunch, ());
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetWaitForLaunch, (bool));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetWaitForLaunch, (bool, bool));
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBAttachInfo, GetIgnoreExisting, ());
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetIgnoreExisting, (bool));
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBAttachInfo, GetUserID, ());
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBAttachInfo, GetGroupID, ());
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBAttachInfo, UserIDIsValid, ());
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBAttachInfo, GroupIDIsValid, ());
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetUserID, (uint32_t));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetGroupID, (uint32_t));
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBAttachInfo, GetEffectiveUserID, ());
|
|
|
|
LLDB_REGISTER_METHOD(uint32_t, SBAttachInfo, GetEffectiveGroupID, ());
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBAttachInfo, EffectiveUserIDIsValid, ());
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBAttachInfo, EffectiveGroupIDIsValid, ());
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetEffectiveUserID, (uint32_t));
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetEffectiveGroupID, (uint32_t));
|
|
|
|
LLDB_REGISTER_METHOD(lldb::pid_t, SBAttachInfo, GetParentProcessID, ());
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetParentProcessID, (lldb::pid_t));
|
|
|
|
LLDB_REGISTER_METHOD(bool, SBAttachInfo, ParentProcessIDIsValid, ());
|
|
|
|
LLDB_REGISTER_METHOD(lldb::SBListener, SBAttachInfo, GetListener, ());
|
|
|
|
LLDB_REGISTER_METHOD(void, SBAttachInfo, SetListener, (lldb::SBListener &));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|