-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Labels
Description
Many users need concurrent data structures but not necessarily lock-free or wait-free ones (which are already available in EMB²). For example, if an application is not timing critical, blocking data structures might be beneficial w.r.t memory consumption and context switching. Implement thread-safe wrappers for the following data structures provided by the standard library:
- set
- map
- stack
- queue
- priority_queue
Reactions are currently unavailable