mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
Fix a typo in ABI_Dev_Notes.md (#17832)
This commit is contained in:
parent
60f19ab001
commit
ba72bb6f98
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ Global variables may get constructed or destructed inside "DllMain". There are s
|
|||
## Thread Local variables
|
||||
Onnxruntime must support explicit linking, where the operating system loads the DLL on demand at runtime, instead of process startup time. This is required by our language bindings like C#/Java.
|
||||
|
||||
However, there are some special restrictions on this, If a thread local variable need non-trivial construction, for the threads already exist before onnxruntime.dll is loaded, the variable won't get initialized correctly. So it's better to only access such variables from onnxruntime internal threads, or make these variables function local (Like the magic statics).
|
||||
However, there are some special restrictions on this. If a thread local variable need non-trivial construction, for the threads already exist before onnxruntime.dll is loaded, the variable won't get initialized correctly. So it's better to only access such variables from onnxruntime internal threads, or make these variables function local (Like the magic statics).
|
||||
|
||||
|
||||
## No undefined symbols
|
||||
|
|
|
|||
Loading…
Reference in a new issue