libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos.hxx
1#pragma once
2
3// C++
4#include <exception>
5#include <optional>
6#include <string_view>
7
8// cosmos
9#include <cosmos/utils.hxx>
10
11namespace cosmos {
12
14
18using RestartOnIntr = NamedBool<struct restart_on_intr_t, true>;
19
20extern RestartOnIntr auto_restart_syscalls;
21
23
29using RunningOnValgrind = NamedBool<struct running_on_valgrind_t, false>;
30
31extern RunningOnValgrind running_on_valgrind;
32
34
50[[ noreturn ]] void fatal_error(
51 const std::string_view msg,
52 const std::exception *ex = nullptr);
53
55
68void noncritical_error(
69 const std::string_view msg,
70 const std::exception &ex);
71
72} // end ns