libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos.hxx
Go to the documentation of this file.
1#pragma once
2
3#include <cosmos/dso_export.h>
4
5namespace cosmos {
6
15
25void COSMOS_API init();
26
28void COSMOS_API finish();
29
31
34struct Init {
35 Init() { init(); }
36
37 ~Init() { finish(); }
38};
39
41
67void COSMOS_API set_restart_syscall_on_interrupt(const bool auto_restart);
68
69} // end ns
70
Convenience initialization object.
Definition cosmos.hxx:34