Uses of Class
cz.vutbr.fit.healing.Healing

Packages that use Healing
cz.vutbr.fit.healing   
cz.vutbr.fit.racedetector Race detector for IBM ConTest What is a data race? 
 

Uses of Healing in cz.vutbr.fit.healing
 

Subclasses of Healing in cz.vutbr.fit.healing
(package private)  class HealingNewMutex
           Healing method which uses a new explicit lock to guard the variable.
(package private)  class HealingOTWait
          Healing method that uses wait called on the threads trying to access the variable while another trhead is inside a critical section that should be executed atomicaly.
(package private)  class HealingOTYield
          Healing method that uses yield called on the threads trying to access the variable while another trhead is inside a critical section that should be executed atomicaly.
(package private)  class HealingPriority
           Method that influences scheduler by the increasing the priority of the thread entering critical section to maximum and take it back when the thread leaves the section.
(package private)  class HealingSemaphore
           Healing method which uses a new semaphore to guard the variable.
(package private)  class HealingThreads
           Method based on the utilization of other processors (cores) in the system.
(package private)  class HealingYield
           The method try to influence scheduler by calling yield before thread enters the critical section which should be executed atomicaly.
(package private)  class HealingYieldPriority
           Method that influences scheduler by the increasing the priority of the thread entering critical section to maximum, call yield to receive full window from scheduler and take it back when the thread leaves the section.
(package private)  class HealingYieldThreads
           Method based on the utilization of other processors (cores) in the system.
 

Methods in cz.vutbr.fit.healing that return Healing
static Healing Healing.getHealingMethod()
          Returns a new object representing concrete healing method which will be used for healing (quarding atomicity sections).
 

Uses of Healing in cz.vutbr.fit.racedetector
 

Fields in cz.vutbr.fit.racedetector declared as Healing
protected  Healing RDThread.healing