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

- Fix typo in `task` brief

https://github.com/lewissbaker/cppcoro/blob/a87e97fe5b6091ca9f6de4637736b8e0d8b109cf/lib/socket.cpp#L291 is the correct code following? ```cpp ipv4Sockaddr.sin_port = htons(localEndPoint.to_ipv4().port()); ^^^^^ ```

link against library in other end-user cmakes should be done via find_package(cppcoro 1.0.0 CONFIG REQUIRED) target_link_libraries(${PROJECT_NAME} PRIVATE coroutines::cppcoro )

I get dozens of errors that files are not found when trying to build with clang10. I have tried to update experimental/coroutine to coroutine but it just doesn't work. I...

trivial fix to smoothen the experience for first time users

c:\devzone\cppcoro>cake.bat Traceback (most recent call last): File "c:\devzone\cppcoro\tools\cake\src\run.py", line 17, in cake.main.execute() File "c:\devzone\cppcoro\tools\cake\src\cake\main.py", line 22, in execute import cake.runner File "c:\devzone\cppcoro\tools\cake\src\cake\runner.py", line 25 from cake.async import flatten ^ SyntaxError:...

If @lewissbaker decide to stop actively maintain this repo, anyone would like to keep it going? This is the most promising coro library till now I have seen, thanks for...

Hi, I've been trying to implement the single_producer_sequencer pattern in my code and based my attempt on the sample code here: https://github.com/lewissbaker/cppcoro#single_producer_sequencer Unfortunately, apart from small errors in the code...

In static_thread_pool.cpp, there is a comment about how "the auto_reset_event used to wake up this thread may already be in the 'set' state" and a defense that this "won't really...