context VS cgreenlet

Compare context vs cgreenlet and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
context cgreenlet
3 1
280 81
1.1% -
5.7 10.0
7 days ago over 3 years ago
Assembly C
- MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

context

Posts with mentions or reviews of context. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-24.
  • Fiber in C++: Understanding the Basics
    8 projects | news.ycombinator.com | 24 Sep 2023
    https://github.com/boostorg/context/blob/6fa6d5c50d120e69b2d...

    ...and this causes problems, because it can't guarantee that all fields are initialized or switched successfully: https://lists.boost.org/boost-bugs/2014/10/38476.php

    Microsoft continually adds and changes fields in the TIB with each new release of Windows. Attempting to implement fibers manually is a ticking time bomb that should never be used in production.

  • History of non-standard-layout class layouts
    1 project | /r/cpp | 7 Mar 2022
    Marginally disagree. Lots of optimization work takes advantage of knowing how the ABI works. Knowing you can pass two register returns on SysV is a particularly common optimization point. Writing context switching routines that can be reliably ported (ex, boost-context) requires this consistency of ABI. As a final example, cache locality optimizations require the ability to reason about ABI layout.
  • How do you implement green threads?
    1 project | /r/cpp_questions | 24 Mar 2021

cgreenlet

Posts with mentions or reviews of cgreenlet. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-24.
  • Fiber in C++: Understanding the Basics
    8 projects | news.ycombinator.com | 24 Sep 2023
    A disadvantage to the ‘no function coloring’ in fibers is that it makes lockless programming harder. A nested function call can switch from under you without your knowledge, making it hard to know where the preemption points are and whether to take locks when making updates to shared state. With function coloring you know exactly whether a function might switch or not.

    I’ve programmed both fiber based systems and coroutines. I even created my own fiber libraries for Python (https://github.com/geertj/gruvi) and C++ (https://github.com/geertj/cgreenlet, mostly an experiment, and incorrectly named coroutines for C++ while it’s really fibers). In the Python version I experimented with some features to help you know whether a nested function might switch.

    In the end, for me and for the problem domains I worked in, the explicit async/await co-routine style wins over fibers. It gives you most of the performance and memory benefits of user mode switching while keeping your code mostly lock free.

What are some alternatives?

When comparing context and cgreenlet you can also consider the following projects:

stack-switching - A repository for the stack switching proposal.

ghost-userspace

assembly - assembly projects

marl - A hybrid thread / fiber task scheduler written in C++ 11

gruvi - Async IO for Python, Simplified

llvm-project - The LLVM Project is a collection of modular and reusable compiler and toolchain technologies.