Difference between revisions of "Uno/Term/Thread Safe"

From Apache OpenOffice Wiki
< Uno‎ | Term
Jump to: navigation, search
m (Uno/Spec/Thread Safe moved to Uno/Term/Thread Safe: It is not a spec, but a term.)
m (Added category.)
Line 1: Line 1:
 
; Thread Safe Code
 
; Thread Safe Code
 
: Thread safe code takes care of all threading issues, including locking critical sections etc. Code doing blocking I/O needs to be thread safe, so that system calls can be interrupted. Thread safe code may also be used to allow high concurrency, while avoiding the runtime overhead of external locking.
 
: Thread safe code takes care of all threading issues, including locking critical sections etc. Code doing blocking I/O needs to be thread safe, so that system calls can be interrupted. Thread safe code may also be used to allow high concurrency, while avoiding the runtime overhead of external locking.
 +
 +
[[Category:Uno:Term]]

Revision as of 15:52, 15 May 2006

Thread Safe Code
Thread safe code takes care of all threading issues, including locking critical sections etc. Code doing blocking I/O needs to be thread safe, so that system calls can be interrupted. Thread safe code may also be used to allow high concurrency, while avoiding the runtime overhead of external locking.
Personal tools