libcosmos
Linux C++ System Programming Library
|
Information about file owner settings. More...
#include <FileDescriptor.hxx>
Public Types | |
enum class | Type : std::underlying_type< RawType >::type { THREAD = F_OWNER_TID , PROCESS = F_OWNER_PID , GROUP = F_OWNER_PGRP } |
Strong owner type differentation. More... | |
using | RawType = decltype(f_owner_ex::type) |
Public Member Functions | |
Owner (ProcessID pid) | |
Owner (ProcessGroupID pgid) | |
Owner (ThreadID tid) | |
Type | type () const |
bool | isTID () const |
bool | isPID () const |
bool | isPGID () const |
bool | valid () const |
void | invalidate () |
void | set (ProcessID pid) |
void | set (ProcessGroupID pgid) |
void | set (ThreadID tid) |
std::optional< ProcessID > | asPID () const |
std::optional< ProcessGroupID > | asPGID () const |
std::optional< ThreadID > | asTID () const |
auto | raw () |
auto | raw () const |
Protected Attributes | |
f_owner_ex | m_raw |
Information about file owner settings.
This type holds either a ProcessID, ProcessGroupID or ThreadID. Only type safe operations are provided, for low level access the raw system call data structure can be accesses via the raw()
member.
The file owner defines which process, thread or process group gets notified about asynchronous file I/O events via signals.
Definition at line 81 of file FileDescriptor.hxx.
using cosmos::FileDescriptor::Owner::RawType = decltype(f_owner_ex::type) |
Definition at line 92 of file FileDescriptor.hxx.
|
strong |
Strong owner type differentation.
Definition at line 97 of file FileDescriptor.hxx.
|
inline |
Definition at line 105 of file FileDescriptor.hxx.
|
inlineexplicit |
Definition at line 109 of file FileDescriptor.hxx.
|
inlineexplicit |
Definition at line 113 of file FileDescriptor.hxx.
|
inlineexplicit |
Definition at line 117 of file FileDescriptor.hxx.
|
inline |
Definition at line 166 of file FileDescriptor.hxx.
|
inline |
Definition at line 162 of file FileDescriptor.hxx.
|
inline |
Definition at line 170 of file FileDescriptor.hxx.
|
inline |
Definition at line 142 of file FileDescriptor.hxx.
|
inline |
Definition at line 133 of file FileDescriptor.hxx.
|
inline |
Definition at line 129 of file FileDescriptor.hxx.
|
inline |
Definition at line 125 of file FileDescriptor.hxx.
|
inline |
Definition at line 174 of file FileDescriptor.hxx.
|
inline |
Definition at line 178 of file FileDescriptor.hxx.
|
inline |
Definition at line 152 of file FileDescriptor.hxx.
|
inline |
Definition at line 147 of file FileDescriptor.hxx.
|
inline |
Definition at line 157 of file FileDescriptor.hxx.
|
inline |
Definition at line 121 of file FileDescriptor.hxx.
|
inline |
Definition at line 137 of file FileDescriptor.hxx.
|
protected |
Definition at line 184 of file FileDescriptor.hxx.