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
6namespace cosmos {
7
16enum class UserID : uid_t {
17 INVALID = static_cast<uid_t>(-1),
18 ROOT = 0
19};
20
21enum class GroupID : gid_t {
22 INVALID = static_cast<gid_t>(-1),
23 ROOT = 0
24};
25
27
37struct no_init_t {};
38constexpr inline no_init_t no_init;
39
40} // end ns
Type used to invoke constructors that explicitly don't zero-initialize low level data structures.
Definition types.hxx:37