User profile: Not a coder

User info
User name:Not a coder
History
Joined:
Number of posts:6
Latest posts:

Represent free functions in UML
I have few functions that a user can use to access a c++ library. They are not part of any class. In...

Coroutine implementation in c++
I am emulating physical cores of real system via pthreads. Each Pthread(Core) has two queues. One is...

Coroutine implementation in c++
Both package_queue and waiting_queue are implemented as fix length circular buffers. How is it possi...

Coroutine implementation in c++
I am writing a library for real time systems and its bare metal implementation which involves thread...

Coroutine implementation in c++
I am trying to implement coroutines (had to reinvent the wheel as part of my project) in c++. Every ...