Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 267 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 267 Bytes

HackingSTL

Hacking STL (ex: C++11 thread for stacksize)

thread

Implement std::stacking_thread(size_t size, ...)

std::thread thread = std::stacking_thread(65536, []{ printf("Hello, world!\n"); });

semaphore

Implement semaphore before C++20