Wrapper around data structure used with ptrace::Request::PEEKSIGINFO.
More...
#include <ptrace.hxx>
|
struct ptrace_peeksiginfo_args | m_args |
|
Wrapper around data structure used with ptrace::Request::PEEKSIGINFO.
Definition at line 239 of file ptrace.hxx.
◆ Flags
◆ Flag
Enumerator |
---|
PEEK_SHARED | dump signals from the process-wide queue, otherwise from the per-thread queue.
|
Definition at line 242 of file ptrace.hxx.
242 : uint32_t {
244 };
@ PEEK_SHARED
dump signals from the process-wide queue, otherwise from the per-thread queue.
◆ PeekSigInfo()
cosmos::ptrace::PeekSigInfo::PeekSigInfo |
( |
| ) |
|
|
inline |
Creates an object with default settings.
The Flag::PEEK_SHARED setting is applied, since this is the typical request that will be needed. All other members are set to zero.
Definition at line 255 of file ptrace.hxx.
◆ clear()
void cosmos::ptrace::PeekSigInfo::clear |
( |
| ) |
|
|
inline |
Definition at line 260 of file ptrace.hxx.
260 {
262 }
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
◆ raw()
auto cosmos::ptrace::PeekSigInfo::raw |
( |
| ) |
const |
|
inline |
Definition at line 278 of file ptrace.hxx.
278 {
279 return &m_args;
280 }
◆ setAmount()
void cosmos::ptrace::PeekSigInfo::setAmount |
( |
int32_t | nr | ) |
|
|
inline |
Sets the maximum amount of SigInfo structures to copy.
Definition at line 274 of file ptrace.hxx.
274 {
275 m_args.nr = nr;
276 }
◆ setFlags()
void cosmos::ptrace::PeekSigInfo::setFlags |
( |
Flags | flags | ) |
|
|
inline |
Definition at line 264 of file ptrace.hxx.
264 {
265 m_args.flags = flags.raw();
266 }
◆ setOffset()
void cosmos::ptrace::PeekSigInfo::setOffset |
( |
uint64_t | off | ) |
|
|
inline |
Sets the offset into the queue from which SigInfo structures should be obtained.
Definition at line 269 of file ptrace.hxx.
269 {
270 m_args.off = off;
271 }
◆ m_args
struct ptrace_peeksiginfo_args cosmos::ptrace::PeekSigInfo::m_args |
|
protected |
The documentation for this class was generated from the following file: