cppcoro icon indicating copy to clipboard operation
cppcoro copied to clipboard

A library of C++ coroutine abstractions for the coroutines TS

Results 108 cppcoro issues
Sort by recently updated
recently updated
newest added

Did anyone compile this successfully for macOS? Apple's fork of clang should be able to handle the source, but some of the tests fails with a segmentation fault. FWIW, here's...

As the following example demonstrates, ```cppcoro::shared_task```s become ```cppcoro::task```s when propagating through ```cppcoro::schedule_on```. Is this intended behaviour? ```cpp auto f() -> cppcoro::shared_task { co_return 0; } auto tp = cppcoro::static_thread_pool{}; auto...

Is there a way to use the library with gcc trunk where the coroutine header is not marked experimental? Currently it complains about the library including `` while in gcc...

In the *API summary* of `socket` of [the documentation](https://github.com/lewissbaker/cppcoro): static socket create_tcpv4(ip_service& ioSvc); static socket create_tcpv6(ip_service& ioSvc); static socket create_updv4(ip_service& ioSvc); static socket create_udpv6(ip_service& ioSvc); I think all of `ip_service`...

the second last #endif is in wrong position so that the compiler reports somewhere wrong with the last } Anyway the file_read_operation is not implemented for non-windows environment. I am...

I'm following the steps in the README file and after I run `cake.bat` it only outputs ``` Build succeeded. Build took 0:00:00.xxx. ``` and nothing else. No new files are...

The current implementation of `task` and `async_generator` make use of atomics to arbitrate between a potential race between the awaiting consumer suspending while waiting for a value to be produced...

This may not be a suitable question, but I'm curious is there any benchmark or justification the use of cppcoro would be a better option? I'm currently trying to learn...