1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-28 02:19:04 +00:00

Updated second embedded varlist to an itemized list as in

socket_object:connect() (works?).
This commit is contained in:
batrick
2008-06-09 21:23:19 +00:00
parent 1abbed9548
commit 10f6fc9b53

View File

@@ -2609,8 +2609,8 @@ error_message describes the occurred error.</para>
The returned function allows you to lock, try to lock, and
release the mutex. It's first and only parameter is either:
</para>
<variablelist>
<varlistentry>
<itemizedlist>
<listitem>
<option><literal>"lock"</literal></option>
<para>
Make a blocking lock on the mutex. If the mutex is busy
@@ -2618,8 +2618,8 @@ error_message describes the occurred error.</para>
yield and wait. The function returns with the mutex
locked.
</para>
</varlistentry>
<varlistentry>
</listitem>
<listitem>
<option><literal>"trylock"</literal></option>
<para>
Makes a non-blocking lock on the mutex. If the mutex is
@@ -2627,24 +2627,24 @@ error_message describes the occurred error.</para>
<literal>false</literal>. Otherwise the mutex locks the
mutex and returns <literal>true</literal>.
</para>
</varlistentry>
<varlistentry>
</listitem>
<listitem>
<option><literal>"done"</literal></option>
<para>
Releases the mutex and allows another thread to lock it.
If the thread does not have a lock on the mutex, an
error will be raised.
</para>
</varlistentry>
<varlistentry>
</listitem>
<listitem>
<option><literal>"running"</literal></option>
<para>
Returns the thread locked on the mutex or nil. This
should only be used for debugging as it interferes
with finished threads from being collected.
</para>
</varlistentry>
</variablelist>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
</variablelist>