HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Ruby27-x64/share/doc/ruby/html/ConditionVariable.html
<!DOCTYPE html>

<html>
<head>
<meta charset="UTF-8">

<title>class ConditionVariable - RDoc Documentation</title>

<script type="text/javascript">
  var rdoc_rel_prefix = "./";
  var index_rel_prefix = "./";
</script>

<script src="./js/navigation.js" defer></script>
<script src="./js/search.js" defer></script>
<script src="./js/search_index.js" defer></script>
<script src="./js/searcher.js" defer></script>
<script src="./js/darkfish.js" defer></script>

<link href="./css/fonts.css" rel="stylesheet">
<link href="./css/rdoc.css" rel="stylesheet">




<body id="top" role="document" class="class">
<nav role="navigation">
  <div id="project-navigation">
    <div id="home-section" role="region" title="Quick navigation" class="nav-section">
  <h2>
    <a href="./index.html" rel="home">Home</a>
  </h2>

  <div id="table-of-contents-navigation">
    <a href="./table_of_contents.html#pages">Pages</a>
    <a href="./table_of_contents.html#classes">Classes</a>
    <a href="./table_of_contents.html#methods">Methods</a>
  </div>
</div>

    <div id="search-section" role="search" class="project-section initially-hidden">
  <form action="#" method="get" accept-charset="utf-8">
    <div id="search-field-wrapper">
      <input id="search-field" role="combobox" aria-label="Search"
             aria-autocomplete="list" aria-controls="search-results"
             type="text" name="search" placeholder="Search" spellcheck="false"
             title="Type to search, Up and Down to navigate, Enter to load">
    </div>

    <ul id="search-results" aria-label="Search Results"
        aria-busy="false" aria-expanded="false"
        aria-atomic="false" class="initially-hidden"></ul>
  </form>
</div>

  </div>

  

  <div id="class-metadata">
    
    <div id="parent-class-section" class="nav-section">
  <h3>Parent</h3>

  
  <p class="link"><a href="Object.html">Object</a>
  
</div>

    
    
    <!-- Method Quickref -->
<div id="method-list-section" class="nav-section">
  <h3>Methods</h3>

  <ul class="link-list" role="directory">
    
    <li ><a href="#method-c-new">::new</a>
    
    <li ><a href="#method-i-broadcast">#broadcast</a>
    
    <li ><a href="#method-i-signal">#signal</a>
    
    <li ><a href="#method-i-wait">#wait</a>
    
  </ul>
</div>

  </div>
</nav>

<main role="main" aria-labelledby="class-ConditionVariable">
  <h1 id="class-ConditionVariable" class="class">
    class ConditionVariable
  </h1>

  <section class="description">
    
<p><a href="ConditionVariable.html"><code>ConditionVariable</code></a> objects augment class <a href="Mutex.html"><code>Mutex</code></a>. Using condition variables, it is possible to suspend while in the middle of a critical section until a resource becomes available.</p>

<p>Example:</p>

<pre class="ruby"><span class="ruby-identifier">mutex</span> = <span class="ruby-constant">Mutex</span>.<span class="ruby-identifier">new</span>
<span class="ruby-identifier">resource</span> = <span class="ruby-constant">ConditionVariable</span>.<span class="ruby-identifier">new</span>

<span class="ruby-identifier">a</span> = <span class="ruby-constant">Thread</span>.<span class="ruby-identifier">new</span> {
   <span class="ruby-identifier">mutex</span>.<span class="ruby-identifier">synchronize</span> {
     <span class="ruby-comment"># Thread &#39;a&#39; now needs the resource</span>
     <span class="ruby-identifier">resource</span>.<span class="ruby-identifier">wait</span>(<span class="ruby-identifier">mutex</span>)
     <span class="ruby-comment"># &#39;a&#39; can now have the resource</span>
   }
}

<span class="ruby-identifier">b</span> = <span class="ruby-constant">Thread</span>.<span class="ruby-identifier">new</span> {
   <span class="ruby-identifier">mutex</span>.<span class="ruby-identifier">synchronize</span> {
     <span class="ruby-comment"># Thread &#39;b&#39; has finished using the resource</span>
     <span class="ruby-identifier">resource</span>.<span class="ruby-identifier">signal</span>
   }
}
</pre>

  </section>

  
  <section id="5Buntitled-5D" class="documentation-section">
    

    

    

    

    
     <section id="public-class-5Buntitled-5D-method-details" class="method-section">
       <header>
         <h3>Public Class Methods</h3>
       </header>

    
      <div id="method-c-new" class="method-detail ">
        
        <div class="method-heading">
          <span class="method-name">new</span><span
            class="method-args">()</span>
          
          <span class="method-click-advice">click to toggle source</span>
          
        </div>
        

        <div class="method-description">
          
          <p>Creates a new condition variable instance.</p>
          
          

          
          <div class="method-source-code" id="new-source">
            <pre>static VALUE
rb_condvar_initialize(VALUE self)
{
    struct rb_condvar *cv = condvar_ptr(self);
    list_head_init(&amp;cv-&gt;waitq);
    return self;
}</pre>
          </div>
          
        </div>

        

        
      </div>

    
    </section>
  
     <section id="public-instance-5Buntitled-5D-method-details" class="method-section">
       <header>
         <h3>Public Instance Methods</h3>
       </header>

    
      <div id="method-i-broadcast" class="method-detail ">
        
        <div class="method-heading">
          <span class="method-name">broadcast</span><span
            class="method-args">()</span>
          
          <span class="method-click-advice">click to toggle source</span>
          
        </div>
        

        <div class="method-description">
          
          <p>Wakes up all threads waiting for this lock.</p>
          
          

          
          <div class="method-source-code" id="broadcast-source">
            <pre>static VALUE
rb_condvar_broadcast(VALUE self)
{
    struct rb_condvar *cv = condvar_ptr(self);
    wakeup_all(&amp;cv-&gt;waitq);
    return self;
}</pre>
          </div>
          
        </div>

        

        
      </div>

    
      <div id="method-i-signal" class="method-detail ">
        
        <div class="method-heading">
          <span class="method-name">signal</span><span
            class="method-args">()</span>
          
          <span class="method-click-advice">click to toggle source</span>
          
        </div>
        

        <div class="method-description">
          
          <p>Wakes up the first thread in line waiting for this lock.</p>
          
          

          
          <div class="method-source-code" id="signal-source">
            <pre>static VALUE
rb_condvar_signal(VALUE self)
{
    struct rb_condvar *cv = condvar_ptr(self);
    wakeup_one(&amp;cv-&gt;waitq);
    return self;
}</pre>
          </div>
          
        </div>

        

        
      </div>

    
      <div id="method-i-wait" class="method-detail ">
        
        
        <div class="method-heading">
          <span class="method-callseq">
            wait(mutex, timeout=nil)
          </span>
          
          <span class="method-click-advice">click to toggle source</span>
          
        </div>
        
        

        <div class="method-description">
          
          <p>Releases the lock held in <code>mutex</code> and waits; reacquires the lock on wakeup.</p>

<p>If <code>timeout</code> is given, this method returns after <code>timeout</code> seconds passed, even if no other thread doesn&#39;t signal.</p>
          
          

          
          <div class="method-source-code" id="wait-source">
            <pre>static VALUE
rb_condvar_wait(int argc, VALUE *argv, VALUE self)
{
    struct rb_condvar *cv = condvar_ptr(self);
    struct sleep_call args;
    struct sync_waiter w;

    rb_scan_args(argc, argv, &quot;11&quot;, &amp;args.mutex, &amp;args.timeout);

    w.th = GET_THREAD();
    list_add_tail(&amp;cv-&gt;waitq, &amp;w.node);
    rb_ensure(do_sleep, (VALUE)&amp;args, delete_from_waitq, (VALUE)&amp;w);

    return self;
}</pre>
          </div>
          
        </div>

        

        
      </div>

    
    </section>
  
  </section>

</main>


<footer id="validator-badges" role="contentinfo">
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
  <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.1.
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>