Monday, November 08, 2010 at 12:07 AM.
system.verbs.builtins.webserver.util.unlockSemaphores
on unlockSemaphores () {
<<March 08, 1998 at 3:12:16 PM by WMF
<<This script unlocks any semaphores that were locked by the current thread
local {
me = thread.getCurrentID ();
i};
for i=1 to sizeOf(system.compiler.semaphores) {
if (system.compiler.semaphores[i]["who"] == me) {
semaphores.unlock (nameOf (system.compiler.semaphores[i]))}};
true};
unlockSemaphores ()
This listing is for code that runs in the OPML Editor environment. I created these listings because I wanted the search engines to index it, so that when I want to look up something in my codebase I don't have to use the much slower search functionality in my object database. Dave Winer.