Loading...
Searching...
No Matches
threadUse.hpp
Go to the documentation of this file.
1
2#pragma once
3
5
6namespace by {
11 class _nout threadUse {
12 BY(ME(threadUse))
13
14 public:
15 threadUse();
16 threadUse(const errReport& new1);
17 ~threadUse();
18
19 public:
20 thread& get();
21 const thread& get() const BY_CONST_FUNC(get())
22
23 void use();
24 void rel();
25
26 private:
27 tstr<thread> _thr;
28 tstr<thread> _prev;
29 };
30}
Error report collector.
Definition errReport.hpp:24
Thread execution context for byeol runtime.
Definition thread.hpp:46
Thread usage wrapper.
Definition threadUse.hpp:11
Definition tnarr.hpp:9
to Top