Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antares0982/thread_local_wrapper
Toy thread_local wrapper to implement a workaround for broken MinGW-W64 thread model.
https://github.com/antares0982/thread_local_wrapper
cpp mingw mingw-w64 thread-local
Last synced: 8 days ago
JSON representation
Toy thread_local wrapper to implement a workaround for broken MinGW-W64 thread model.
- Host: GitHub
- URL: https://github.com/antares0982/thread_local_wrapper
- Owner: Antares0982
- License: mit
- Created: 2023-09-16T11:00:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-30T09:11:43.000Z (about 1 year ago)
- Last Synced: 2023-09-30T10:38:58.575Z (about 1 year ago)
- Topics: cpp, mingw, mingw-w64, thread-local
- Language: C++
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Thread Local Wrapper
Toy `thread_local` wrapper to implement a workaround for broken MinGW-W64 thread model. See more details [here](https://github.com/msys2/MINGW-packages/issues/2519).### How To Use
```c++
auto &object = Antares::tls_get();
```