Help for this page

Select Code to Download


  1. or download this
        while (1) {
            lock ($baton);
    ...
            ...
            cond_broadcast ($baton);
        }
    
  2. or download this
        lock ($baton);
        while (1) {
    ...
            ...
            cond_broadcast ($baton);
        }