DebugServer2
Loading...
Searching...
No Matches
Thread.h
1//
2// Copyright (c) 2014-present, Facebook, Inc.
3// All rights reserved.
4//
5// This source code is licensed under the University of Illinois/NCSA Open
6// Source License found in the LICENSE file in the root directory of this
7// source tree. An additional grant of patent rights can be found in the
8// PATENTS file in the same directory.
9//
10
11#pragma once
12
13#include "DebugServer2/Target/POSIX/Thread.h"
14
15#include <csignal>
16
17namespace ds2 {
18namespace Target {
19namespace Linux {
20
22protected:
23 friend class Process;
24 Thread(Process *process, ThreadId tid);
25
26protected:
27 ErrorCode updateStopInfo(int waitStatus) override;
28 void updateState() override;
29};
30} // namespace Linux
31} // namespace Target
32} // namespace ds2
Definition Process.h:20
Definition Thread.h:21
Definition Thread.h:19