Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > e3d62627d1d1aab7ab1be2dd7f65a872 > files > 359

ecl-10.4.1-1.fc14.x86_64.rpm

<html><head><meta http-equiv="Content-Type" content="text/html; charset=ANSI_X3.4-1968"><title>mp:with-lock</title><link rel="stylesheet" href="ecl.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.75.2"><link rel="home" href="index.html" title="The ECL manual"><link rel="up" href="ch19s02.html" title="4.2.&#160;MP Reference"><link rel="prev" href="re27.html" title="mp:process-run-function"><link rel="next" href="ch20.html" title="Chapter&#160;5.&#160;Memory Management"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center"><code class="function">mp:with-lock</code></th></tr><tr><td width="20%" align="left"><a accesskey="p" href="re27.html">Prev</a>&#160;</td><th width="60%" align="center">4.2.&#160;MP Reference</th><td width="20%" align="right">&#160;<a accesskey="n" href="ch20.html">Next</a></td></tr></table><hr></div><div class="refentry" title="mp:with-lock"><a name="ref.mp.with-lock"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p><code class="function">mp:with-lock</code> &#8212; Synchronize a piece of code between different tasks.</p></div><div class="refsynopsisdiv" title="Macro"><h2>Macro</h2><div class="funcsynopsis"><p><code class="funcdef">(mp::with-lock</code> (<var class="pdparam">lock</var>)) &#8658; <var class="pdparam">&amp;body</var>) &#8658; <var class="pdparam">body</var>)</p></div></div><div class="refsect1" title="Description"><a name="id661511"></a><h2>Description</h2><p>It grabs a lock, executes a piece of lisp code and releases the lock at
  the end. The inner forms are protected so that when any condition is
  signalled the lock is released.</p></div><div class="refsect1" title="Example"><a name="id661523"></a><h2>Example</h2><p>Ensure each task increments the counter properly. The lock is
  required because INCF is not an atomic operation.</p><pre class="programlisting">
(defvar *counter* 0)
(defvar *counter-lock* (mp:make-lock :name 'counter))

(flet ((task (name)
        (loop while (&lt;= *counter* 10)
	      do (progn
                   (sleep 1)
	           (with-lock (*counter-lock*)
                     (format t "~%;;; ~A counts ~D" name *counter*)
		     (terpri)
                     (incf *counter*))))))
  (mp:process-run-function 'ana #'task 'ana)
  (mp:process-run-function 'jose #'task 'jose))
</pre></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="re27.html">Prev</a>&#160;</td><td width="20%" align="center"><a accesskey="u" href="ch19s02.html">Up</a></td><td width="40%" align="right">&#160;<a accesskey="n" href="ch20.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"><code class="function">mp:process-run-function</code>&#160;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&#160;Chapter&#160;5.&#160;Memory Management</td></tr></table></div></body></html>