libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::ptrace::PeekSigInfo Class Reference

Wrapper around data structure used with ptrace::Request::PEEKSIGINFO. More...

#include <ptrace.hxx>

Public Types

enum class  Flag : uint32_t { PEEK_SHARED = PTRACE_PEEKSIGINFO_SHARED }
 
using Flags = BitMask<Flag>
 

Public Member Functions

 PeekSigInfo ()
 Creates an object with default settings.
 
void clear ()
 
void setFlags (Flags flags)
 
void setOffset (uint64_t off)
 Sets the offset into the queue from which SigInfo structures should be obtained.
 
void setAmount (int32_t nr)
 Sets the maximum amount of SigInfo structures to copy.
 
auto raw () const
 

Protected Attributes

struct ptrace_peeksiginfo_args m_args
 

Detailed Description

Wrapper around data structure used with ptrace::Request::PEEKSIGINFO.

Definition at line 239 of file ptrace.hxx.

Member Typedef Documentation

◆ Flags

Definition at line 246 of file ptrace.hxx.

Member Enumeration Documentation

◆ Flag

enum class cosmos::ptrace::PeekSigInfo::Flag : uint32_t
strong
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 {
243 PEEK_SHARED = PTRACE_PEEKSIGINFO_SHARED,
244 };
@ PEEK_SHARED
dump signals from the process-wide queue, otherwise from the per-thread queue.

Constructor & Destructor Documentation

◆ 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.

255 {
256 clear();
257 setFlags(Flags{Flag::PEEK_SHARED});
258 }

Member Function Documentation

◆ clear()

void cosmos::ptrace::PeekSigInfo::clear ( )
inline

Definition at line 260 of file ptrace.hxx.

260 {
261 zero_object(m_args);
262 }
void zero_object(T &obj)
Completely overwrites the given object with zeroes.
Definition memory.hxx:23

◆ 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 }

Member Data Documentation

◆ m_args

struct ptrace_peeksiginfo_args cosmos::ptrace::PeekSigInfo::m_args
protected

Definition at line 284 of file ptrace.hxx.


The documentation for this class was generated from the following file: