All Packages  This Package  Class Hierarchy  Class Search  Index

Class utah.npm.core.Cond
java.lang.Object
   |
   +----Refable
           |
           +----utah.npm.core.Cond

  Summary

public final class  Cond
     extends Refable
{
          // Constructors 2
     public Cond();
     public Cond(int);

          // Methods 6
     public void broadcast();
     public void destroy();
     public void finalize();
     public void signal();
     public String toString();
     public void wait(Mutex);
}

Cond implements the NPM specified Condition Variable object. Cond objects are guaranteed to exist in the typespace of all Processes and to work across Process boundaries.

TODO: CPU Inheritance scheduling support

Version:
NPMJava 0.5.0 April, 1998
Author:
Patrick Tullmann tullmann@cs.utah.edu




  Constructors

· Cond

Summary  |  Top

   public Cond() 


· Cond

Summary  |  Top
   public Cond(int hashCode) 


  Methods

· wait

Summary  |  Top
   public void wait(Mutex mutex) 

The current thread will block on this condition variable until some other thread issues a signal. The associated mutex must be locked. It is the responsibility of the application to correctly associate a mutex with a condition variable. The mutex will be reacquired when the thread is woken. There may be spurious wakeups.

Parameter Description
mutex The locked mutex to unlock when blocking and reacquire when awoken.



· signal

Summary  |  Top
   public void signal() 

Wake a single thread blocked on this condition variable. "Unused" signals are not saved.



· broadcast

Summary  |  Top
   public void broadcast() 

Wake all threads currently blocked on this condition variable.



· destroy

Summary  |  Top
   public void destroy() 

Destroy this condition variable. Any outstanding references to this object will be nullified.



· toString

Summary  |  Top
   public String toString() 

Return the string representation of this condition variable.

Returns:
the string "Cond Var".


· finalize

Summary  |  Top
   public void finalize() 

The finalizer called if the GC system collects this object. Simply calls destroy()

See Also: destroy



All Packages  This Package  Class Hierarchy  Class Search  Index
Freshly brewed Java API Documentation automatically generated with polardoc Version 1.0.7