Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 94 and Version 95 of Developer/SMP


Ignore:
Timestamp:
01/03/16 18:08:37 (8 years ago)
Author:
Ralph Holmes
Comment:

Fix spelling and/or grammar.

Legend:

Unmodified
Added
Removed
Modified
  • Developer/SMP

    v94 v95  
    398398[[Image(rtems-smp-events.png, 600px)]]
    399399
    400 The colour indicates which locks are held during a state and state transition.
     400The color indicates which locks are held during a state and state transition.
    401401In case of a blocking operation we have four synchronization states which are
    402402used to split up the complex blocking operation into parts in order to decrease
     
    13861386As a sample operating system operation the existing mutex
    13871387obtain/release/timeout sequences will be analysed.  All ISR disable/enable
    1388 points (highlighted with colours) must be turned into an appropriate SMP clock
     1388points (highlighted with colors) must be turned into an appropriate SMP clock
    13891389(e.g. a ticket spin lock).  One goal is that an uncontested mutex obtain will
    13901390use no SMP locks except the one associated with the mutex object itself.  Is