Javascript semaphore / test-and-set / lock? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T15:28:23Z http://stackoverflow.com/feeds/question/555191 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/555191/javascript-semaphore-test-and-set-lock 8 Javascript semaphore / test-and-set / lock? Parand 2009-02-17T00:51:21Z 2009-02-17T04:56:08Z <p>Is there such a thing as an atomic test-and-set, semaphore, or lock in Javascript?</p> <p>I have javascript invoking async background processes via a custom protocol (the background process literally runs in a separate process, unrelated to the browser). I believe I'm running into a race condition; the background process returns between my test and my set, screwing things up on the javascript side. I need a test-and-set operation to make it a real semaphore. </p> <p>Here's the javascript code that attempts to detect background processes and queue them up:</p> <pre><code>Call = function () { var isRunning = true, queue = []; return { // myPublicProperty: "something", call: function (method) { if (isRunning) { console.log("Busy, pushing " + method); queue.push(method); } else { isRunning = true; objccall(method); } }, done: function() { isRunning = false; if (queue.length &gt; 0) { Call.call(queue.shift()); } } }; </code></pre> <p>}();</p> <p>Call is a singleton that implements the queuing; anybody that wants to invoke an external process does Call.call("something") .</p> <p>Any ideas?</p> http://stackoverflow.com/questions/555191/javascript-semaphore-test-and-set-lock/555226#555226 0 Answer by PERR0_HUNTER for Javascript semaphore / test-and-set / lock? PERR0_HUNTER 2009-02-17T01:16:15Z 2009-02-17T01:16:15Z <p>Maybe you could implement a basic integer semaphore, just add the variable into the DOM and lock/unlock it and make sure your functions keep checking it, else timeout them =) </p> <p>If you are using a framework such as Mootools you could try to handle the flow of the app with events such as onComplete and so on</p> <p>good luck</p> http://stackoverflow.com/questions/555191/javascript-semaphore-test-and-set-lock/555232#555232 5 Answer by olliej for Javascript semaphore / test-and-set / lock? olliej 2009-02-17T01:19:40Z 2009-02-17T01:29:21Z <p>JavaScript has no locking semantics because JS is not a multi threaded language. Multiple threads can only operate concurrently in completely distinct contexts -- eg. HTML5 Worker threads, or in things like multiple instances of JavaScriptCore API's context object (I assume SpiderMonkey has a similar concept). They can't have shared state, so in essence all execution is atomic.</p> <p>Okay, as you have now provided some of your code i assume you have something akin to:</p> <pre><code>External Process: &lt;JSObject&gt;.isRunning = true; doSomething() &lt;JSObject&gt;.done() </code></pre> <p>Or some such (using appropriate APIs). In which case I would expect the JS engine to block if JS is executing in the context of your js object (which is what JavaScriptCore would do), failing that you will probably need to put a manual lock in place around js execution.</p> <p>What engine are you using to do all of this? I ask because based on your description it sounds like you're setting a flag from a secondary thread from a non-JS language using the C/C++ API provided by that language, and most JS engines assume that any state manipulation made via the API will be occurring on a single thread, typically the same thread that all execution occurs on.</p> http://stackoverflow.com/questions/555191/javascript-semaphore-test-and-set-lock/555244#555244 2 Answer by codelogic for Javascript semaphore / test-and-set / lock? codelogic 2009-02-17T01:28:43Z 2009-02-17T01:28:43Z <p>A quick Google search for "javascript mutex" returned <a href="http://www.developer.com/lang/jscript/article.php/3592016" rel="nofollow">this</a> article (Implementing Mutual Exclusion in JavaScript).</p>