How to prevent Matlab Coder from declaring locals as statics?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
keith russell
el 27 de Abr. de 2017
Respondida: Ryan Livingston
el 1 de Mayo de 2017
Matlab Coder sometimes marks certain local arrays as static. Although this of course saves time in stack setup, it makes the whole function thread-unsafe. How do we suppress this optimization?
(I apologize - I lost my example code.)
0 comentarios
Respuesta aceptada
Ryan Livingston
el 1 de Mayo de 2017
You can enable the MultiInstanceCode configuration setting:
That will instead "spill" the statics to a heap-allocated structure that must be passed in when calling the generated entry-point functions. The doc page:
is the main landing page for that topic and includes links to other pages showing how to call the generated code with this setting enabled.
0 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!