libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
types.hxx
Go to the documentation of this file.
1
#pragma once
2
3
// Linux
4
#include <unistd.h>
5
6
namespace
cosmos {
7
16
enum class
UserID : uid_t {
17
INVALID =
static_cast<
uid_t
>
(-1),
18
ROOT = 0
19
};
20
21
enum class
GroupID : gid_t {
22
INVALID =
static_cast<
gid_t
>
(-1),
23
ROOT = 0
24
};
25
27
37
struct
no_init_t
{};
38
constexpr
inline
no_init_t
no_init;
39
40
}
// end ns
cosmos::no_init_t
Type used to invoke constructors that explicitly don't zero-initialize low level data structures.
Definition
types.hxx:37
include
types.hxx
Generated by
1.12.0