kayws426 / embox

Automatically exported from code.google.com/p/embox
0 stars 1 forks source link

Thread thread safety for public API #543

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What new or enhanced feature are you proposing?
Current design for compiled-in application allows to configure for 
multitasking, in such configuration multiple application would simultaneously 
use public APIs (e.g. malloc) without explicit inter-application 
synchronization. In these configurations these APIs are required to be thread 
safe.

What goals would this enhancement help you to achieve?
Allow to execute multiple applications using public APIs in parallel.

How are you going to implement the enhancement?
Naive implementation could use global locking mechanism.

Original issue reported on code.google.com by fsul...@gmail.com on 15 Feb 2013 at 12:57