Difference between revisions of "Uno/Binary/Spec/Threading-Model"

From Apache OpenOffice Wiki
< Uno‎ | Binary
Jump to: navigation, search
m (Removed C++ constructs.)
(Description: Removed "thread free".)
Line 5: Line 5:
  
 
===Description===
 
===Description===
The [[Uno/Spec/Threading Model]] for the Binary UNO runtime.
+
The refined specification of the [[Uno/Spec/Threading Model|abstract threading model]] for the Binary UNO runtime.
  
 
Support threading type specific compilation via <code>#define</code>. Specify defines for the following threading types:
 
Support threading type specific compilation via <code>#define</code>. Specify defines for the following threading types:
Line 11: Line 11:
 
* [[Uno/Term/Thread Safe|thread safe]]
 
* [[Uno/Term/Thread Safe|thread safe]]
 
* [[Uno/Term/Thread Affine|thread affine]]
 
* [[Uno/Term/Thread Affine|thread affine]]
* [[Uno/Term/Thread Free|thread free]]
 
  
 
Threading model specific environments are backed by the appropriate purpose environments.
 
Threading model specific environments are backed by the appropriate purpose environments.
 
* <code>"<ABI>:unsafe" </code> is backed by the default [[Uno/Binary/Spec/Thread Unsafety Bridge]].
 
* <code>"<ABI>:unsafe" </code> is backed by the default [[Uno/Binary/Spec/Thread Unsafety Bridge]].
* <code>"<ABI>"      </code> is backed by the default thread safe environment (as usual).
+
* <code>"<ABI>"      </code> is backed by the default thread-safe environment (as usual).
 
* <code>"<ABI>:affine"</code> is backed by the default [[Uno/Binary/Spec/Thread Affinity Bridge]].
 
* <code>"<ABI>:affine"</code> is backed by the default [[Uno/Binary/Spec/Thread Affinity Bridge]].
  

Revision as of 07:13, 3 August 2006

State: draft
Type: specification

Threading Model

Description

The refined specification of the abstract threading model for the Binary UNO runtime.

Support threading type specific compilation via #define. Specify defines for the following threading types:

Threading model specific environments are backed by the appropriate purpose environments.

The UNO Threading Model specification for Binary UNO is the sum of the specifications for the parts, see below for details.

Rationale

The current threading related code quality of OOo has proven that doing proper multi threading programming is not easy. Even seemingly simple things, as thread safeness, seem to be unreachable. Therefor UNO programming must be as simple as possible in respect to multi threading programming.

API

The following new defines select the threading type for binary UNO:

  • UNO_THREAD_SAFE
  • UNO_THREAD_UNSAFE
  • UNO_THREAD_AFFINE

Services / Client code compiled with one of these defines lifes in the associated environment. Not defining one of these defines, lets binary UNO fall back to CPPU_THREAD_SAFE, and gives a warning. This is compatible with the original behaviour.

The Associated environments are:

Dependencies

Personal tools