clang-formated new fiber.cpp and minicoro.h
This commit is contained in:
parent
16f92e5b32
commit
4a71984803
2 changed files with 1242 additions and 1199 deletions
|
@ -16,11 +16,11 @@ struct Fiber::FiberImpl {
|
||||||
std::mutex guard;
|
std::mutex guard;
|
||||||
bool released{};
|
bool released{};
|
||||||
bool is_thread_fiber{};
|
bool is_thread_fiber{};
|
||||||
Fiber *next_fiber{};
|
Fiber* next_fiber{};
|
||||||
Fiber **next_fiber_ptr;
|
Fiber** next_fiber_ptr;
|
||||||
std::function<void()> entry_point;
|
std::function<void()> entry_point;
|
||||||
|
|
||||||
mco_coro *context;
|
mco_coro* context;
|
||||||
};
|
};
|
||||||
|
|
||||||
Fiber::Fiber() : impl{std::make_unique<FiberImpl>()} {
|
Fiber::Fiber() : impl{std::make_unique<FiberImpl>()} {
|
||||||
|
@ -29,9 +29,8 @@ Fiber::Fiber() : impl{std::make_unique<FiberImpl>()} {
|
||||||
|
|
||||||
Fiber::Fiber(std::function<void()>&& entry_point_func) : impl{std::make_unique<FiberImpl>()} {
|
Fiber::Fiber(std::function<void()>&& entry_point_func) : impl{std::make_unique<FiberImpl>()} {
|
||||||
impl->entry_point = std::move(entry_point_func);
|
impl->entry_point = std::move(entry_point_func);
|
||||||
auto desc = mco_desc_init([] (mco_coro *coro) {
|
auto desc = mco_desc_init(
|
||||||
reinterpret_cast<Fiber*>(coro->user_data)->impl->entry_point();
|
[](mco_coro* coro) { reinterpret_cast<Fiber*>(coro->user_data)->impl->entry_point(); }, 0);
|
||||||
}, 0);
|
|
||||||
desc.user_data = this;
|
desc.user_data = this;
|
||||||
mco_result res = mco_create(&impl->context, &desc);
|
mco_result res = mco_create(&impl->context, &desc);
|
||||||
ASSERT(res == MCO_SUCCESS);
|
ASSERT(res == MCO_SUCCESS);
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue