You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As we are constructing one module we could concurrently start loading the shared library needed for the next module. The linux shared library system already prevents concurrent loading of shared libraries and some module's constructors are not thread safe so it would likely take a lot of effort to concurrently construct modules. Pipelining the shared library loading and module construction would have the lowest risk of a concurrency problem while still giving some startup benefit.
The text was updated successfully, but these errors were encountered:
As we are constructing one module we could concurrently start loading the shared library needed for the next module. The linux shared library system already prevents concurrent loading of shared libraries and some module's constructors are not thread safe so it would likely take a lot of effort to concurrently construct modules. Pipelining the shared library loading and module construction would have the lowest risk of a concurrency problem while still giving some startup benefit.
The text was updated successfully, but these errors were encountered: