concurrency

Installation
SKILL.md

Concurrency Skill

Production-Grade Development Skill | C++ Concurrent Programming

Master C++ concurrency from C++11 threads to C++20 coroutines and parallel algorithms.


Thread Basics

Creating and Managing Threads

#include <thread>
#include <iostream>

// Basic thread creation
void worker(int id) {
    std::cout << "Worker " << id << " running\n";
Related skills

More from pluginagentmarketplace/custom-plugin-cpp

Installs
1
GitHub Stars
4
First Seen
Apr 7, 2026