libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
types.hxx File Reference
#include <unistd.h>

Go to the source code of this file.

Classes

struct  cosmos::no_init_t
 Type used to invoke constructors that explicitly don't zero-initialize low level data structures. More...
 

Enumerations

enum class  UserID : uid_t { INVALID = static_cast<uid_t>(-1) , ROOT = 0 }
 
enum class  GroupID : gid_t { INVALID = static_cast<gid_t>(-1) , ROOT = 0 }
 

Variables

constexpr no_init_t cosmos::no_init
 

Detailed Description

This header contains low level OS interface types shared between multiple libcosmos classes, that cannot be attributed to a specific subsystem like fs or proc.

Definition in file types.hxx.

Enumeration Type Documentation

◆ GroupID

enum class cosmos::GroupID : gid_t
strong

Definition at line 21 of file types.hxx.

21 : gid_t {
22 INVALID = static_cast<gid_t>(-1),
23 ROOT = 0
24};

◆ UserID

enum class cosmos::UserID : uid_t
strong

Definition at line 16 of file types.hxx.

16 : uid_t {
17 INVALID = static_cast<uid_t>(-1),
18 ROOT = 0
19};

Variable Documentation

◆ no_init

no_init_t cosmos::no_init
inlineconstexpr

Definition at line 38 of file types.hxx.