mirror of
https://gitlab.com/niansa/libcrosscoro.git
synced 2025-03-06 20:53:32 +01:00
See issue for more details, in general attempting to implement a coro::thread_pool exposed that the coro::sync_wait and coro::when_all only worked if the coroutines executed on that same thread. They should now possibly have the ability to execute on another thread, to be determined in a later issue. Fixes #7
12 lines
300 B
C++
12 lines
300 B
C++
#pragma once
|
|
|
|
#include "coro/awaitable.hpp"
|
|
#include "coro/event.hpp"
|
|
#include "coro/generator.hpp"
|
|
#include "coro/latch.hpp"
|
|
#include "coro/promise.hpp"
|
|
#include "coro/scheduler.hpp"
|
|
#include "coro/sync_wait.hpp"
|
|
#include "coro/task.hpp"
|
|
#include "coro/thread_pool.hpp"
|
|
#include "coro/when_all.hpp"
|