Skip to content

Instantly share code, notes, and snippets.

View cramja's full-sized avatar
💯

Marc S cramja

💯
View GitHub Profile
@cramja
cramja / example.cpp
Last active April 6, 2017 13:48
clang++ -std=c++14 example.cpp -o ex.out -lpthread
// A simple mutex-sharing scheme.
#include <assert.h>
#include <cstdlib>
#include <iostream>
#include <mutex>
#include <thread>
using namespace std;