scpi-parser
scpi-parser copied to clipboard
Make library thread safe
trafficstars
Library is not thread safe. To overcome this issue
- user must use library only in one thread and use message queue to communicate with scpi thread
- user must lock all manipulations with scpi_context
With recursive mutex, it is possible to define some macro and extend the library to perform context locking by itself.
This issue is related to #68 and #63