samskalicky commented on issue #13438: libc getenv is not threadsafe URL: https://github.com/apache/incubator-mxnet/issues/13438#issuecomment-444291317 @larroy Env may not be shared across processes, but the same libc is being called into from different processes. And the problem is when one process/thread is in setenv and the other one is in getenv at the same time. So its more about the single libc being shared than the actual Env vars.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
