pthread_mutex_init.html 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  2. <HTML>
  3. <HEAD>
  4. <META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=utf-8">
  5. <TITLE>PTHREAD_MUTEX(3) manual page</TITLE>
  6. <META NAME="GENERATOR" CONTENT="OpenOffice.org 3.2 (Linux)">
  7. <META NAME="CREATED" CONTENT="20050505;5000">
  8. <META NAME="CHANGEDBY" CONTENT="Ross Johnson">
  9. <META NAME="CHANGED" CONTENT="20110326;15072100">
  10. <META NAME="CHANGEDBY" CONTENT="Ross Johnson">
  11. <META NAME="CHANGEDBY" CONTENT="Ross Johnson">
  12. <!-- manual page source format generated by PolyglotMan v3.2, -->
  13. <!-- available at http://polyglotman.sourceforge.net/ -->
  14. <STYLE TYPE="text/css">
  15. <!--
  16. H4.cjk { font-family: "AR PL UMing CN" }
  17. H4.ctl { font-family: "Lohit Devanagari" }
  18. H2.cjk { font-family: "AR PL UMing CN" }
  19. H2.ctl { font-family: "Lohit Devanagari" }
  20. PRE.cjk { font-family: "AR PL UMing CN", monospace }
  21. PRE.ctl { font-family: "Lohit Devanagari", monospace }
  22. -->
  23. </STYLE>
  24. </HEAD>
  25. <BODY LANG="en-GB" BGCOLOR="#ffffff" DIR="LTR">
  26. <H4 CLASS="western">POSIX Threads for Windows – REFERENCE -
  27. <A HREF="http://sources.redhat.com/pthreads-win32">Pthreads-w32</A></H4>
  28. <P><A HREF="index.html">Reference Index</A></P>
  29. <P><A HREF="#toc">Table of Contents</A></P>
  30. <H2 CLASS="western"><A HREF="#toc0" NAME="sect0">Name</A></H2>
  31. <P>pthread_mutex_init, pthread_mutex_lock, pthread_mutex_trylock,
  32. pthread_mutex_timedlock, pthread_mutex_unlock,
  33. pthread_mutex_consistent, pthread_mutex_destroy - operations on
  34. mutexes
  35. </P>
  36. <H2 CLASS="western"><A HREF="#toc1" NAME="sect1">Synopsis</A></H2>
  37. <P><B>#include &lt;pthread.h&gt;</B>
  38. </P>
  39. <P><B>#include &lt;time.h&gt;</B></P>
  40. <P><B>pthread_mutex_t </B><I>fastmutex</I> <B>=
  41. PTHREAD_MUTEX_INITIALIZER;</B>
  42. </P>
  43. <P><B>pthread_mutex_t </B><I>recmutex</I> <B>=
  44. PTHREAD_RECURSIVE_MUTEX_INITIALIZER;</B>
  45. </P>
  46. <P><B>pthread_mutex_t </B><I>errchkmutex</I> <B>=
  47. PTHREAD_ERRORCHECK_MUTEX_INITIALIZER;</B>
  48. </P>
  49. <P><B>pthread_mutex_t </B><I>recmutex</I> <B>=
  50. PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;</B>
  51. </P>
  52. <P><B>pthread_mutex_t </B><I>errchkmutex</I> <B>=
  53. PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP;</B>
  54. </P>
  55. <P><B>int pthread_mutex_init(pthread_mutex_t *</B><I>mutex</I><B>,
  56. const pthread_mutexattr_t *</B><I>mutexattr</I><B>);</B>
  57. </P>
  58. <P><B>int pthread_mutex_lock(pthread_mutex_t *</B><I>mutex</I><B>);</B>
  59. </P>
  60. <P><B>int pthread_mutex_trylock(pthread_mutex_t *</B><I>mutex</I><B>);</B>
  61. </P>
  62. <P><B>int pthread_mutex_timedlock(pthread_mutex_t *</B><I>mutex,
  63. </I><B>const struct timespec *</B><I>abs_timeout</I><B>);</B>
  64. </P>
  65. <P><B>int pthread_mutex_unlock(pthread_mutex_t *</B><I>mutex</I><B>);</B>
  66. </P>
  67. <P><B>int pthread_mutex_consistent(pthread_mutex_t *</B><I>mutex</I><B>);</B>
  68. </P>
  69. <P><B>int pthread_mutex_destroy(pthread_mutex_t *</B><I>mutex</I><B>);</B>
  70. </P>
  71. <H2 CLASS="western"><A HREF="#toc2" NAME="sect2">Description</A></H2>
  72. <P>A mutex is a MUTual EXclusion device, and is useful for protecting
  73. shared data structures from concurrent modifications, and
  74. implementing critical sections and monitors.
  75. </P>
  76. <P>A mutex has two possible states: unlocked (not owned by any
  77. thread), and locked (owned by one thread). A mutex can never be owned
  78. by two different threads simultaneously. A thread attempting to lock
  79. a mutex that is already locked by another thread is suspended until
  80. the owning thread unlocks the mutex first.
  81. </P>
  82. <P><B>pthread_mutex_init</B> initializes the mutex object pointed to
  83. by <I>mutex</I> according to the mutex attributes specified in
  84. <I>mutexattr</I>. If <I>mutexattr</I> is <B>NULL</B>, default
  85. attributes are used instead.
  86. </P>
  87. <P>The type of a mutex determines whether it can be locked again by a
  88. thread that already owns it. The default type is “normal”. See
  89. <A HREF="pthread_mutexattr_init.html"><B>pthread_mutexattr_init</B>(3)</A>
  90. for more information on mutex attributes.
  91. </P>
  92. <P>Variables of type <B>pthread_mutex_t</B> can also be initialized
  93. statically, using the constants <B>PTHREAD_MUTEX_INITIALIZER</B> (for
  94. normal “fast” mutexes), <B>PTHREAD_RECURSIVE_MUTEX_INITIALIZER</B>
  95. (for recursive mutexes), and <B>PTHREAD_ERRORCHECK_MUTEX_INITIALIZER</B>
  96. (for error checking mutexes). <SPAN STYLE="font-weight: normal">In
  97. the </SPAN><B>Pthreads-w32</B> <SPAN STYLE="font-weight: normal">implementation,
  98. an application should still call </SPAN><B>pthread_mutex_destroy</B>
  99. <SPAN STYLE="font-weight: normal">at some point to ensure that any
  100. resources consumed by the mutex are released.</SPAN></P>
  101. <P><SPAN STYLE="font-weight: normal">Any mutex type can be
  102. initialized as a </SPAN><B>robust mutex</B><SPAN STYLE="font-weight: normal">.
  103. See </SPAN><A HREF="pthread_mutexattr_init.html"><B>pthread_mutexattr_init</B><SPAN STYLE="font-weight: normal">(3)</SPAN></A>
  104. <SPAN STYLE="font-weight: normal">for more information as well as the
  105. section </SPAN><I><U><SPAN STYLE="font-weight: normal">Robust Mutexes</SPAN></U></I>
  106. <SPAN STYLE="font-weight: normal">below.</SPAN></P>
  107. <P><B>pthread_mutex_lock</B> locks the given mutex. If the mutex is
  108. currently unlocked, it becomes locked and owned by the calling
  109. thread, and <B>pthread_mutex_lock</B> returns immediately. If the
  110. mutex is already locked by another thread, <B>pthread_mutex_lock</B>
  111. suspends the calling thread until the mutex is unlocked.</P>
  112. <P>If the mutex is already locked by the calling thread, the behavior
  113. of <B>pthread_mutex_lock</B> depends on the type of the mutex. If the
  114. mutex is of the “normal” type, the calling thread is suspended
  115. until the mutex is unlocked, thus effectively causing the calling
  116. thread to deadlock. If the mutex is of the ‘‘error checking’’
  117. type, <B>pthread_mutex_lock</B> returns immediately with the error
  118. code <B>EDEADLK</B>. If the mutex is of the ‘‘recursive’’
  119. type, <B>pthread_mutex_lock</B> succeeds and returns immediately,
  120. recording the number of times the calling thread has locked the
  121. mutex. An equal number of <B>pthread_mutex_unlock</B> operations must
  122. be performed before the mutex returns to the unlocked state.
  123. </P>
  124. <P><B>pthread_mutex_trylock</B> behaves identically to
  125. <B>pthread_mutex_lock</B>, except that it does not block the calling
  126. thread if the mutex is already locked by another thread (or by the
  127. calling thread in the case of a “normal” or “<SPAN STYLE="font-style: normal">errorcheck</SPAN>”
  128. mutex). Instead, <B>pthread_mutex_trylock</B> returns immediately
  129. with the error code <B>EBUSY</B>.
  130. </P>
  131. <P><B>pthread_mutex_timedlock</B> behaves identically to
  132. <B>pthread_mutex_lock</B>, except that if it cannot acquire the lock
  133. before the <I>abs_timeout</I> time, the call returns with the error
  134. code <B>ETIMEDOUT</B>. If the mutex can be locked immediately it is,
  135. and the <B>abs_timeout</B> parameter is ignored.</P>
  136. <P><B>pthread_mutex_consistent</B> may only be called for
  137. <B>PTHREAD_MUTEX_ROBUST</B> mutexes. It simply marks the mutex as
  138. consistent. See <I><U>Robust Mutexes</U></I> below.</P>
  139. <P><B>pthread_mutex_unlock</B> unlocks the given mutex. The mutex is
  140. assumed to be locked and owned by the calling thread on entrance to
  141. <B>pthread_mutex_unlock</B>. If the mutex is of the “normal”
  142. type, <B>pthread_mutex_unlock</B> always returns it to the unlocked
  143. state. If it is of the ‘‘recursive’’ type, it decrements the
  144. locking count of the mutex (number of <B>pthread_mutex_lock</B>
  145. operations performed on it by the calling thread), and only when this
  146. count reaches zero is the mutex actually unlocked. In <B>Pthreads-win32</B>,
  147. non-robust normal or default mutex types do not check the owner of
  148. the mutex. For all types of robust mutexes the owner is checked and
  149. an error code is returned if the calling thread does not own the
  150. mutex.</P>
  151. <P>On ‘‘error checking’’ mutexes, <B>pthread_mutex_unlock</B>
  152. actually checks at run-time that the mutex is locked on entrance, and
  153. that it was locked by the same thread that is now calling
  154. <B>pthread_mutex_unlock</B>. If these conditions are not met, an
  155. error code is returned and the mutex remains unchanged. ‘‘Normal’’
  156. [non-robust] mutexes perform no such checks, thus allowing a locked
  157. mutex to be unlocked by a thread other than its owner. This is
  158. non-portable behavior and is not meant to be used as a feature.</P>
  159. <P><B>pthread_mutex_destroy</B> destroys a mutex object, freeing the
  160. resources it might hold. The mutex must be unlocked on entrance.</P>
  161. <H2 CLASS="western"><A HREF="#toc10" NAME="sect10">Robust Mutexes</A></H2>
  162. <P>If the mutex is <B>PTHREAD_MUTEX_ROBUST</B> and the owning thread
  163. terminates without unlocking the mutex the implementation will wake
  164. one waiting thread, if any. The next thread to acquire the mutex will
  165. receive the error code <B>EOWNERDEAD</B><SPAN STYLE="font-weight: normal">,
  166. in which case that thread should if possible ensure that the state
  167. protected by the mutex is consistent and then call
  168. </SPAN><B>pthread_mutex_consistent</B> <SPAN STYLE="font-weight: normal">before
  169. unlocking. The mutex may then be used normally from then on.</SPAN></P>
  170. <P><SPAN STYLE="font-weight: normal">If the thread cannot recover the
  171. state then it must call </SPAN><B>pthread_mutex_unlock</B><SPAN STYLE="font-weight: normal">
  172. without calling </SPAN><B>pthread_mutex_consistent</B><SPAN STYLE="font-weight: normal">.
  173. This will mark the mutex as unusable and wake all currently waiting
  174. threads with the return code </SPAN><B>ENOTRECOVERABLE</B><SPAN STYLE="font-weight: normal">.
  175. The error indicates that the mutex is no longer usable and any
  176. threads that receive this error code from any lock operation have not
  177. acquired the mutex. The mutex can be made consistent by calling
  178. </SPAN><B>pthread_mutex_destroy</B> <SPAN STYLE="font-weight: normal">to
  179. uninitialize the mutex, and calling </SPAN><B>pthread_mutex_int</B>
  180. <SPAN STYLE="font-weight: normal">to reinitialize the mutex. However,
  181. the state that was protected by the mutex remains inconsistent and
  182. some form of application recovery is required.</SPAN></P>
  183. <P><SPAN STYLE="font-weight: normal">If a thread that receives the
  184. </SPAN><B>EOWNERDEAD</B> <SPAN STYLE="font-weight: normal">error code
  185. itself terminates without unlocking the mutex then this behaviour
  186. repeats for the next acquiring thread.</SPAN></P>
  187. <P><SPAN STYLE="font-weight: normal">Applications must ensure that
  188. they check the return values from all calls targeting robust mutexes.</SPAN></P>
  189. <P STYLE="font-weight: normal">Robust mutexes are slower because they
  190. require some additional overhead, however they are not very much
  191. slower than the non-robust recursive type.</P>
  192. <H2 CLASS="western"><A HREF="#toc3" NAME="sect3">Cancellation</A></H2>
  193. <P>None of the mutex functions is a cancellation point, not even
  194. <B>pthread_mutex_lock</B>, in spite of the fact that it can suspend a
  195. thread for arbitrary durations. This way, the status of mutexes at
  196. cancellation points is predictable, allowing cancellation handlers to
  197. unlock precisely those mutexes that need to be unlocked before the
  198. thread stops executing. Consequently, threads using deferred
  199. cancellation should never hold a mutex for extended periods of time.
  200. </P>
  201. <H2 CLASS="western"><A HREF="#toc4" NAME="sect4">Async-signal Safety</A></H2>
  202. <P>The mutex functions are not async-signal safe. What this means is
  203. that they should not be called from a signal handler. In particular,
  204. calling <B>pthread_mutex_lock</B> or <B>pthread_mutex_unlock</B> from
  205. a signal handler may deadlock the calling thread.
  206. </P>
  207. <H2 CLASS="western"><A HREF="#toc5" NAME="sect5">Return Value</A></H2>
  208. <P><B>pthread_mutex_init</B> always returns 0. The other mutex
  209. functions return 0 on success and a non-zero error code on error.
  210. </P>
  211. <H2 CLASS="western"><A HREF="#toc6" NAME="sect6">Errors</A></H2>
  212. <P>The <B>pthread_mutex_lock</B> function returns the following error
  213. code on error:
  214. </P>
  215. <DL>
  216. <DL>
  217. <DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in"><B>EINVAL</B></DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  218. the mutex has not been properly initialized.
  219. </DD><DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  220. <B>EDEADLK</B></DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  221. the mutex is already locked by the calling thread (‘‘error
  222. checking’’ mutexes only).
  223. </DD><DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  224. <B>EOWNERDEAD</B></DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  225. the robust mutex is now locked by the calling thread after the
  226. previous owner terminated without unlocking it.</DD><DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  227. <B>ENOTRECOVERABLE</B></DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  228. the robust mutex is not locked and is no longer usable after the
  229. previous owner unlocked it without calling
  230. pthread_mutex_consistent.</DD></DL>
  231. <DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  232. The <B>pthread_mutex_trylock</B> function returns the following
  233. error codes on error:
  234. </DD><DL>
  235. <DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  236. <B>EBUSY</B>
  237. </DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  238. the mutex could not be acquired because it was currently locked.
  239. </DD><DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  240. <B>EINVAL</B>
  241. </DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  242. the mutex has not been properly initialized.
  243. </DD><DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  244. <B>EOWNERDEAD</B></DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  245. the robust mutex is now locked by the calling thread after the
  246. previous owner terminated without unlocking it.</DD><DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  247. <B>ENOTRECOVERABLE</B></DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  248. the robust mutex is not locked and is no longer usable after the
  249. previous owner unlocked it without calling
  250. pthread_mutex_consistent.</DD></DL>
  251. </DL>
  252. <P>
  253. The <B>pthread_mutex_timedlock</B> function returns the following
  254. error codes on error:
  255. </P>
  256. <DL>
  257. <DL>
  258. <DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in"><B>ETIMEDOUT</B>
  259. </DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  260. the mutex could not be acquired before the <I>abs_timeout</I> time
  261. arrived.
  262. </DD><DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  263. <B>EINVAL</B>
  264. </DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  265. the mutex has not been properly initialized.
  266. </DD><DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  267. <B>EOWNERDEAD</B></DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  268. the robust mutex is now locked by the calling thread after the
  269. previous owner terminated without unlocking it.</DD><DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  270. <B>ENOTRECOVERABLE</B></DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  271. the robust mutex is not locked and is no longer usable after the
  272. previous owner unlocked it without calling
  273. pthread_mutex_consistent.</DD></DL>
  274. </DL>
  275. <P>
  276. The <B>pthread_mutex_unlock</B> function returns the following error
  277. code on error:
  278. </P>
  279. <DL>
  280. <DL>
  281. <DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in"><B>EINVAL</B>
  282. </DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  283. the mutex has not been properly initialized.
  284. </DD><DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  285. <B>EPERM</B>
  286. </DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  287. the calling thread does not own the mutex (‘‘error checking’’
  288. mutexes only).
  289. </DD></DL>
  290. </DL>
  291. <P>
  292. The <B>pthread_mutex_destroy</B> function returns the following error
  293. code on error:
  294. </P>
  295. <DL>
  296. <DL>
  297. <DT STYLE="margin-right: 0.39in; margin-bottom: 0.2in"><B>EBUSY</B>
  298. </DT><DD STYLE="margin-right: 0.39in; margin-bottom: 0.2in">
  299. the mutex is currently locked.
  300. </DD></DL>
  301. </DL>
  302. <H2 CLASS="western">
  303. <A HREF="#toc7" NAME="sect7">Author</A></H2>
  304. <P>Xavier Leroy &lt;[email protected]&gt;
  305. </P>
  306. <P>Modified by Ross Johnson for use with <A HREF="http://sources.redhat.com/pthreads-win32">Pthreads-w32</A>.</P>
  307. <H2 CLASS="western"><A HREF="#toc8" NAME="sect8">See Also</A></H2>
  308. <P><A HREF="pthread_mutexattr_init.html"><B>pthread_mutexattr_init</B>(3)</A>
  309. , <A HREF="pthread_mutexattr_init.html"><B>pthread_mutexattr_settype</B>(3)</A>
  310. , <A HREF="pthread_cancel.html"><B>pthread_cancel</B>(3)</A> .
  311. </P>
  312. <H2 CLASS="western"><A HREF="#toc9" NAME="sect9">Example</A></H2>
  313. <P>A shared global variable <I>x</I> can be protected by a mutex as
  314. follows:
  315. </P>
  316. <PRE CLASS="western" STYLE="margin-left: 0.39in; margin-right: 0.39in">int x;
  317. pthread_mutex_t mut = PTHREAD_MUTEX_INITIALIZER;</PRE><BLOCKQUOTE STYLE="margin-left: 0in; margin-right: 0in">
  318. All accesses and modifications to <I>x</I> should be bracketed by
  319. calls to <B>pthread_mutex_lock</B> and <B>pthread_mutex_unlock</B> as
  320. follows:
  321. </BLOCKQUOTE>
  322. <PRE CLASS="western" STYLE="margin-left: 0.41in; margin-right: 0.79in">pthread_mutex_lock(&amp;mut);
  323. /* operate on x */
  324. pthread_mutex_unlock(&amp;mut);</PRE>
  325. <HR>
  326. <BLOCKQUOTE STYLE="margin-right: 2.75in"><A NAME="toc"></A><B>Table
  327. of Contents</B></BLOCKQUOTE>
  328. <UL>
  329. <LI><BLOCKQUOTE STYLE="margin-right: 2.75in; margin-bottom: 0in"><A HREF="#sect0" NAME="toc0">Name</A>
  330. </BLOCKQUOTE>
  331. <LI><BLOCKQUOTE STYLE="margin-right: 2.75in; margin-bottom: 0in"><A HREF="#sect1" NAME="toc1">Synopsis</A>
  332. </BLOCKQUOTE>
  333. <LI><BLOCKQUOTE STYLE="margin-right: 2.75in; margin-bottom: 0in"><A HREF="#sect2" NAME="toc2">Description</A>
  334. </BLOCKQUOTE>
  335. <LI><BLOCKQUOTE STYLE="margin-right: 2.75in; margin-bottom: 0in"><A HREF="#sect10" NAME="toc10">Robust
  336. Mutexes</A></BLOCKQUOTE>
  337. <LI><BLOCKQUOTE STYLE="margin-right: 2.75in; margin-bottom: 0in"><A HREF="#sect3" NAME="toc3">Cancellation</A>
  338. </BLOCKQUOTE>
  339. <LI><BLOCKQUOTE STYLE="margin-right: 2.75in; margin-bottom: 0in"><A HREF="#sect4" NAME="toc4">Async-signal
  340. Safety</A>
  341. </BLOCKQUOTE>
  342. <LI><BLOCKQUOTE STYLE="margin-right: 2.75in; margin-bottom: 0in"><A HREF="#sect5" NAME="toc5">Return
  343. Value</A>
  344. </BLOCKQUOTE>
  345. <LI><BLOCKQUOTE STYLE="margin-right: 2.75in; margin-bottom: 0in"><A HREF="#sect6" NAME="toc6">Errors</A>
  346. </BLOCKQUOTE>
  347. <LI><BLOCKQUOTE STYLE="margin-right: 2.75in; margin-bottom: 0in"><A HREF="#sect7" NAME="toc7">Author</A>
  348. </BLOCKQUOTE>
  349. <LI><BLOCKQUOTE STYLE="margin-right: 2.75in; margin-bottom: 0in"><A HREF="#sect8" NAME="toc8">See
  350. Also</A>
  351. </BLOCKQUOTE>
  352. <LI><BLOCKQUOTE STYLE="margin-right: 2.75in"><A HREF="#sect9" NAME="toc9">Example</A>
  353. </BLOCKQUOTE>
  354. </UL>
  355. </BODY>
  356. </HTML>