From 10f6fc9b53d2a5219f2ce9beb79e81ca038cd65e Mon Sep 17 00:00:00 2001 From: batrick Date: Mon, 9 Jun 2008 21:23:19 +0000 Subject: [PATCH] Updated second embedded varlist to an itemized list as in socket_object:connect() (works?). --- docs/scripting.xml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/scripting.xml b/docs/scripting.xml index a71a09fd1..999395cdc 100644 --- a/docs/scripting.xml +++ b/docs/scripting.xml @@ -2609,8 +2609,8 @@ error_message describes the occurred error. The returned function allows you to lock, try to lock, and release the mutex. It's first and only parameter is either: - - + + Make a blocking lock on the mutex. If the mutex is busy @@ -2618,8 +2618,8 @@ error_message describes the occurred error. yield and wait. The function returns with the mutex locked. - - + + Makes a non-blocking lock on the mutex. If the mutex is @@ -2627,24 +2627,24 @@ error_message describes the occurred error. false. Otherwise the mutex locks the mutex and returns true. - - + + 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. - - + + 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. - - + +