billvaglienti / ProtoGen

Communications protocol generation software
MIT License
30 stars 16 forks source link

Thread safe? #94

Closed knollpoi closed 4 years ago

knollpoi commented 4 years ago

Are there any concerns with using ProtoGen generated C code in threaded environments?

billvaglienti commented 4 years ago

The protogen output code does not use any global or statically allocated memory. It should be reentrant and safe to use in a multi-threaded environment.

On Wed, Jul 29, 2020 at 5:24 AM knoll01 notifications@github.com wrote:

Are there any concerns with using ProtoGen generated C code in threaded environments?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/billvaglienti/ProtoGen/issues/94, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACSZMHVITPGGDXZJA7TQI7LR6AIH5ANCNFSM4PLRKXNA .

knollpoi commented 4 years ago

Perfect. Thanks!