active questions tagged locking - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T02:58:28Z http://stackoverflow.com/feeds/tag/locking http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1814076/multiple-instances-lock 0 Multiple-instances lock? acidzombie24 2009-11-28T23:10:50Z 2009-11-28T23:18:43Z <p>I am using a mysql db. Right now for my multithreads i use lock(staticVar){...}. It works fine. But i can add data via the command line which also uses the DB. It will occasionally throw an exception or cause my main instance to throw an exception from the sqlite db being lock.</p> <p>How can i create a mutli instance lock so i no longer get this db is locked exception?</p> http://stackoverflow.com/questions/1812649/when-can-locksyncobject-throw-an-exception 0 When can lock(syncObject) throw an exception? Hasan Khan 2009-11-28T14:36:59Z 2009-11-28T14:36:59Z <p>I have written a com component in .NET and if I try to take a lock on any object in any method (that is invoked by unmanaged code talking to my com component) I get an exception.</p> <p>I do not have the exact text of the exception at this moment but it wasn't much helpful either.</p> <p>So my question is under what circumstances a lock(syncObject) would throw an exception? Here are some facts:</p> <ul> <li>syncObject is not null</li> <li>syncObject is not already locked</li> </ul> <p>Would it have anything to do with callee running in STA (Single Threaded Apartment) or MTA (Multi Threaded Apartment)?</p> http://stackoverflow.com/questions/1812598/c-xml-load-locking-file-on-disk-causing-errors 0 c# xml.Load() locking file on disk causing errors m3ntat 2009-11-28T14:13:35Z 2009-11-28T14:28:09Z <p>Hi all,</p> <p>I have a simple class XmlFileHelper as follows:</p> <pre><code>public class XmlFileHelper { #region Private Members private XmlDocument xmlDoc = new XmlDocument(); private string xmlFilePath; #endregion #region Constructor public XmlFileHelper(string xmlFilePath) { this.xmlFilePath = xmlFilePath; xmlDoc.Load(xmlFilePath); } #endregion #region Public Methods public XmlNode SelectSingleNode(string xPathQuery) { return xmlDoc.SelectSingleNode(xPathQuery); } public string GetAttributeValueByName(XmlNode node, string attributeName) { return node.Attributes.GetNamedItem(attributeName).Value; } #endregion #region Public Properties public string XmlFilePath { get { return xmlFilePath; } } #endregion } </code></pre> <p>The issue is I am getting the following error on Load:</p> <pre><code>System.IO.IOException: The process cannot access the file ''C:\CvarUAT\ReportWriterSettings.xml'' **because it is being used by another process** </code></pre> <p>this occurs when this class is used to by two running instances of a component running in parallel both attempting to load the xml file above, this is legitimate behaviour and required by the application.</p> <p>I only want to read in the xml off disk once and release any reference to the file on disk and use an in memory representation from that point forward.</p> <p>I would have assumed Load operates in a readonly fashion and would have no need to lock the file, what is my best way to achieve the desired result and get around this issue?</p> <p>Thanks</p> http://stackoverflow.com/questions/1798980/how-to-avoid-double-check-locking-when-adding-items-to-a-dictionary-object-in 5 How to avoid double check locking when adding items to a Dictionary<> object in .NET? No Refunds No Returns 2009-11-25T18:23:49Z 2009-11-27T23:31:21Z <p>I have a question about improving the efficiency of my program. I have a Dictionary&lt;string, Thingey&gt; defined to hold named Thingeys. This is a web application that will create multiple named Thingey’s over time. Thingey’s are somewhat expensive to create (not prohibitively so) but I’d like to avoid it whenever possible. My logic for getting the right Thingey for the request looks a lot like this:</p> <pre><code> private Dictionary&lt;string, Thingey&gt; Thingeys; public Thingey GetThingey(Request request) { string thingeyName = request.ThingeyName; if (!this.Thingeys.ContainsKey(thingeyName)) { // create a new thingey on 1st reference Thingey newThingey = new Thingey(request); lock (this.Thingeys) { if (!this.Thingeys.ContainsKey(thingeyName)) { this.Thingeys.Add(thingeyName, newThingey); } // else - oops someone else beat us to it // newThingey will eventually get GCed } } return this. Thingeys[thingeyName]; } </code></pre> <p>In this application, Thingeys live forever once created. We don’t know how to create them or which ones will be needed until the app starts and requests begin coming in. The question I have is in the above code is there are occasional instances where newThingey is created because we get multiple simultaneous requests for it before it’s been created. We end up creating 2 of them but only adding one to our collection. Is there a better way to get Thingeys created and added that doesn’t involve check/create/lock/check/add with the rare extraneous thingey that we created but end up never using? (And this code works and has been running for some time. This is just the nagging bit that has always bothered me.)</p> <p>I'm trying to avoid locking the dictionary for the duration of creating a Thingey.</p> http://stackoverflow.com/questions/1805596/threading-mechanism-preparing-and-releasing-a-cache-in-the-background 0 Threading mechanism: preparing and releasing a cache in the background Thomas Tempelmann 2009-11-26T20:52:53Z 2009-11-27T14:00:50Z <p><em>Preface: This has become a quite a long post. While I'm not new to programming, I have close to zero practice around threading and could need some help here...</em></p> <p><em>This is probably a common problem that could be described in shorted words, but I'm a bit overwhelmed with it.</em></p> <p>Some background first...</p> <p>I'm writing code for the iPhone where I get into performance problems due to the slowness of the machine. I'm trying optimizations to keep the UI snappy, and currently I'm looking into adding some threading.</p> <p>Imagine this: I have a large database that the user can search. To search, the user switches to a specific view, where he gets an edit box to enter his search text. Every time the user types a character in the search box, a search is run <em>synchronuously</em> and the results are presented right away.</p> <p>Originally, the data was in a sqlite db, and while the search was ready instantly, the search always took several seconds, making the UI feel sluggish even when I ran the search in a thread, and updated the results list only once the search was finished seconds later.</p> <p>So I changed the search code to be much much faster, it's below a tenth of a second now, meaning I have no delay any more during search input.</p> <p>Problem is that for the search to be that fast, I need to do some lengthy <em>preparation</em> before I can start searching. This preparation takes 1-2 seconds. And it creates a large amount of objects in memory that I do not want to keep around if not needed.</p> <p>So I am running the preparation in a thread, during the time when the search view is appearing. Most of this is animated, so the preparation can do its work in the mean time without the user even noticing.</p> <p>And if the search view is unloaded, I need to release the cache again. This, too, takes a while (about 1/2 on latest models), so I'd like to perform this in a thread as well, as otherwise the switch to another view would have a noticable delay.</p> <p>All this appears not difficult, at first sight. I have two functions to prepare and release the cache, which look like this:</p> <pre><code>- (void) internalPrepareCache { NSAutoreleasePool *pool = nil; if (![NSThread isMainThread]) pool = [[NSAutoreleasePool alloc] init]; [cacheLock lock]; if (!cacheReady) { Load Data Cache...; // can take a while cacheReady = true; } [cacheLock unlock]; [pool release]; } - (void) internalReleaseCache { NSAutoreleasePool *pool = nil; if (![NSThread isMainThread]) pool = [[NSAutoreleasePool alloc] init]; [cacheLock lock]; if (!cacheReady) { Release Data Cache...; // can take a while cacheReady = false; } [cacheLock unlock]; [pool release]; } </code></pre> <p>Then there are the functions that get invoked by the view controller, from the main thread:</p> <pre><code>// this gets called by the view controller when loaded: - (void) threadedPrepareCache { [NSThread detachNewThreadSelector:@selector(internalPrepareCache) toTarget:self withObject:nil]; } // this gets called by the view controller upon unload: - (void) threadedReleaseCache { [NSThread detachNewThreadSelector:@selector(internalReleaseCache) toTarget:self withObject:nil]; } // this gets called by the view controller to perform a search - (void) searchUsingCache:... { [self internalPrepareCache]; Perform the search ... } </code></pre> <p>As the code shows, I am using a global NSLock object that I use to wrap lock and unlock calls around both the cache-preparation and the cache-release code. I also have a global state variable telling whether the cache is ready or not.</p> <p>It gets complicated because of two special situations:</p> <p>1.) The user could very quickly switch the search view in and out repeatedly. This could queue up several cache-preparation and cache-release operations up to the point where a cache is starting to be prepared while the last action of the user was to dismiss the search. I like to avoid that.</p> <p>2.) If the user is fast (or the iPhone is very slow) and enters a search already before the cache-preparation thread is finished, the non-threaded search needs to wait for the cache getting ready. I am worries that this, too, could get in conflict with the queued up actions from (1).</p> <p>3.) I did the following test:</p> <pre><code>[self threadedPrepareCache]; [self threadedReleaseCache]; [self threadedPrepareCache]; [self threadedReleaseCache]; </code></pre> <p>This test shows that the order I intended is not followed: release happens first (when there's nothing to release yet). This is an extreme example, but it tells me that my above situations might not be correctly programmed yet and I might as well end up with a final preparation when I meant to release it with the last call.</p> <p>How do I solve this?</p> <p>I am thinking of having another global var that declares the currently desired cache state: It is set by the main thread's functions that ask for the cache to be prepared or be discarded. Then, the lock-protected code in both threaded functions checks the currently desired state and acts accordingly. This would prevent the needless runaround of situation (1), right? But how do I make sure that there's not a race condition around this? There's no need to put a lock around setting of this desired-state var, is there?</p> <p>And do I have to worry about (2)? Currently, the search function simply always calls <strong>internalPrepareCache</strong> synchronuously (from the main thread) and thus waits for it to get ready. Is that safe?</p> http://stackoverflow.com/questions/1807157/concurrency-synchronization-question 0 Concurrency / Synchronization question ajay 2009-11-27T06:50:20Z 2009-11-27T12:02:01Z <p><strong>I have 2 programs running on 2 different machines.</strong><br> Each program has a method called updateRecord that does the following 2 things:<br> 1. Do a SELECT query on a particular record Z<br> 2. Do a UPDATE query on the same record.</p> <p>If these 2 queries are in the same transaction (between beginTransaction and commitTransaction) does it guarantee proper execution?</p> <p>i.e, will the following sequence of operations <strong>fail</strong> to execute successfully?</p> <ol> <li>Prog-1 SELECT</li> <li>Prog-2 SELECT</li> <li>Prog-1 UPDATE</li> <li>Prog-2 UPDATE</li> </ol> <p>OR</p> <ol> <li>Prog-1 SELECT</li> <li>Prog-1 UPDATE</li> <li>Prog-1 SELECT</li> <li>Prog-2 UPDATE</li> <li>Prog-1 COMMIT</li> <li>Prog-2 COMMIT</li> </ol> http://stackoverflow.com/questions/1460294/the-best-way-to-design-a-reservation-based-table 1 The best way to design a Reservation based table Johno 2009-09-22T14:02:06Z 2009-11-27T08:17:32Z <p>One of my Clients has a reservation based system. Similar to air lines. Running on MS SQL 2005.</p> <p>The way the previous company has designed it is to create an allocation as a set of rows.</p> <p>Simple Example Being:</p> <pre><code>AllocationId | SeatNumber | IsSold 1234 | A01 | 0 1234 | A02 | 0 </code></pre> <p>In the process of selling a seat the system will establish an update lock on the table.</p> <p>We have a problem at the moment where the locking process is running slow and we are looking at ways to speed it up.</p> <p>The table is already efficiently index, so we are looking at a hardware solution to speed up the process. The table is about 5 mil active rows and sits on a RAID 50 SAS array.</p> <p>I am assuming hard disk seek time is going to be the limiting factor in speeding up update locks when you have 5mil rows and are updating 2-5 rows at a time (I could be wrong).</p> <p>I've herd about people using index partition over several disk arrays, has anyone had similar experiences with trying to speed up locking? can anyone give me some advise onto a possible solution on what hardware might be able to be upgraded or what technology we can take advantage of in order to speed up the update locks (without moving to a cluster)?</p> http://stackoverflow.com/questions/1798374/sql-server-locking-problem-on-popular-table 1 SQL Server locking problem on popular table clintp 2009-11-25T16:59:09Z 2009-11-25T17:56:09Z <p>I've run into an issue that I need clearer heads to think through. Occasionally this stored procedure (and many others similar to it):</p> <pre><code>CREATE PROC [dbo].[add_address1] @recno int OUTPUT, @clientID int, @street varchar (23), @city varchar (21), @state varchar (2), @zip varchar (9) AS declare @s int; select @s = updated from is_clientindex where clientid = @clientID insert into is_address1 (original_rec, clientID, street,city,state,zip) values (@s + 1, @clientID, @street,@city,@state,@zip); set @recno = @@IDENTITY; </code></pre> <p>Will attempt to insert <code>null</code> into <code>original_rec</code>, a column that doesn't allow nulls. The table <code>is_clientindex</code> is a very busy table with lots of reads going on. Inserting or updating is rare.</p> <p>I think what's happening is that <code>is_clientindex</code> is locked, or in some other way unavailable. This causes the <code>select</code> to fail, eventually leading to the <code>insert</code> failing.</p> <p>Does it sound like I'm on the right track?</p> <p>Is there anything I should do to is_clientindex to help this locking issue? The table/database would have been created using the SQL Server 2005 defaults for locking.</p> <p>Is there anything I should do to this stored procedure?</p> <p>Unfortunately, I do need to check that <code>updated</code> flag in <code>is_clientindex</code> when inserting into this table. There's no way around that. </p> <p>Edits:</p> <ul> <li><p>@ClientID is valid (we know this through debugging), and the is_clientindex table is foreign-keyed to everything else in the system so we know it didn't vanish.</p></li> <li><p>This only happens under heavy load with multiple users.</p></li> <li><p>The Activity Monitor shows lots of PAGE locks, but I don't know on what because the Object ID doesn't correspond to anything in the sys.all_objects table.</p></li> </ul> http://stackoverflow.com/questions/1725827/lockfree-standard-collections-and-tutorial-or-articles 1 Lockfree standard collections and tutorial or articles. Jorge Córdoba 2009-11-12T22:21:58Z 2009-11-24T20:29:39Z <p>Does someone know of a good resource for the implementation (meaning source code) of lock-free usual data types. I'm thinking of Lists, Queues and so on?</p> <p>Locking implementations are extremely easy to find but I can't find examples of lock free algorithms and how to exactly does CAS work and how to use it to implement those structures.</p> http://stackoverflow.com/questions/1784195/using-lockfileex-in-c 1 Using LockFileEX in C# JeffreyABecker 2009-11-23T16:16:03Z 2009-11-24T20:23:46Z <h3>Background</h3> <p>I'm trying to implement block file locking in my C# application. The built-in <a href="http://msdn.microsoft.com/en-us/library/system.io.filestream.lock.aspx" rel="nofollow"><code>FileStream.Lock</code></a> method throws an exception if it is unable to acquire the lock.</p> <p>The underlying <a href="http://msdn.microsoft.com/en-us/library/aa365202%28VS.85%29.aspx" rel="nofollow"><code>LockFile</code></a> method returns a status code however I'd prefer not to use a spin-lock to wait for the file to be unlocked. </p> <h3>Question</h3> <p>Does anyone have any code snippets in C# showing how to properly construct the <a href="http://msdn.microsoft.com/en-us/library/ms684342%28VS.85%29.aspx" rel="nofollow">OVERLAPPED</a> structure with a <code>wait</code> handle and pass it to <a href="http://msdn.microsoft.com/en-us/library/aa365203%28VS.85%29.aspx" rel="nofollow"><code>LockFileEx</code></a> and wait for the operation to complete? I am trying to avoid using the Overlapped.Pack methods partially because they're unsafe but mostly because they require an <a href="http://msdn.microsoft.com/en-us/library/system.threading.iocompletioncallback.aspx" rel="nofollow"><code>IOCompletionCallback</code></a> which isn't what I'm trying to achieve.</p> <p>I have the declarations but the construction &amp; use of the <code>OverLapped</code> structure seems to be a little bit more complicated. </p> <p><strong>Note</strong>: I know I need to manually pin the overlapped structure until the wait completes. My current code looks like:</p> <pre><code>ManualResetEvent evt = new ManualResetEvent(false); OVERLAPPED overlapped = new OVERLAPPED(); overlapped.OffsetLow = offsetLow; overlapped.OffsetHigh = offsetHigh; overlapped.hEvent = evt.SafeHandle; GCHandle h = GCHandle.Alloc(overlapped, GCHandleType.Pinned); int hr = Win32.LockFileEX(_handle, LockFlags.Exclusive, 0, offsetLow, offsetHigh, GCHandle.ToIntPtr(h)); if(hr == 0) { int error = Marshal.GetLastWin32Error(); if(error = Win32.ERROR_IO_PENDING) { evt.WaitOne(); } else { //ohpoo } } </code></pre> <h3>Resolution</h3> <p>The code that ended up working as I wanted was:</p> <pre><code> [StructLayout(LayoutKind.Sequential)] public struct OVERLAPPED { public uint internalLow; public uint internalHigh; public uint offsetLow; public uint offsetHigh; public IntPtr hEvent; } [DllImport("Kernel32.dll", SetLastError = true)] private static extern bool LockFileEx(SafeFileHandle handle, int flags, int reserved, int countLow, int countHigh, OVERLAPPED overlapped); private const int ExclusiveLock = 0x00000002; public void Lock(long offset, long count) { int countLow = (int)count; int countHigh = (int)(count &gt;&gt; 32); OVERLAPPED l = new OVERLAPPED() { internalLow = 0, internalHigh = 0, offsetLow = (uint)(int)offset, offsetHigh = (uint)(int)(offset &gt;&gt; 32), hEvent = IntPtr.Zero, }; if (!LockFileEx(_handle, ExclusiveLock, 0, countLow, countHigh, l)) { //TODO: throw an exception } } </code></pre> <p>This code will block until the exclusive lock on the region can be acquired.</p> http://stackoverflow.com/questions/1770115/can-address-space-be-recycled-for-multiple-calls-to-mapviewoffileex-without-chanc 0 Can address space be recycled for multiple calls to MapViewOfFileEx without chance of failure? morechilli 2009-11-20T12:18:42Z 2009-11-24T19:12:52Z <p>Consider a complex, memory hungry, multi threaded application running within a 32bit address space on windows XP.</p> <p>Certain operations require n large buffers of fixed size, where only one buffer needs to be accessed at a time.</p> <p>The application uses a pattern where some address space the size of one buffer is reserved early and is used to contain the currently needed buffer.</p> <p>This follows the sequence: (initial run) VirtualAlloc -> VirtualFree -> MapViewOfFileEx (buffer changes) UnMapViewOfFile -> MapViewOfFileEx</p> <p>Here the pointer to the buffer location is provided by the call to VirtualAlloc and then that same location is used on each call to MapViewOfFileEx.</p> <p>The problem is that windows does not (as far as I know) provide any handshake type operation for passing the memory space between the different users.</p> <p>Therefore there is a small opportunity (at each -> in my above sequence) where the memory is not locked and another thread can jump in and perform an allocation within the buffer.</p> <p>The next call to MapViewOfFileEx is broken and the system can no longer guarantee that there will be a big enough space in the address space for a buffer.</p> <p>Obviously refactoring to use smaller buffers reduces the rate of failures to reallocate space.</p> <p>Some use of HeapLock has had some success but this still has issues - something still manages to steal some memory from within the address space. (We tried Calling GetProcessHeaps then using HeapLock to lock all of the heaps)</p> <p>What I'd like to know is there anyway to lock a specific block of address space that is compatible with MapViewOfFileEx?</p> <p>Edit: I should add that ultimately this code lives in a library that gets called by an application outside of my control</p> http://stackoverflow.com/questions/1790456/is-there-any-circumstance-in-which-calling-enterwritelock-on-a-readerwriterlocksl 4 Is there any circumstance in which calling EnterWriteLock on a ReaderWriterLockSlim should enter a Read lock instead? MKing 2009-11-24T14:34:43Z 2009-11-24T18:16:44Z <p>I have a seemingly very simple case where I'm using System.Threading.ReaderWriterLockSlim in the 3.5 version of the .NET Framework. I first declare one, as shown here: </p> <p><img src="http://odeh.temp.s3.amazonaws.com/lock%5Fdeclaration.bmp" alt="Lock Declaration"></p> <p>I put a break point right before the lock is acquired and took a screen shot so you can see (in the watch window) that there are currently no locks held: </p> <p><img src="http://odeh.temp.s3.amazonaws.com/prelock.bmp" alt="pre lock acquisition"></p> <p>Then, after calling EnterWriteLock, as you can see I am holding a <i>Read Lock</i>. </p> <p><img src="http://odeh.temp.s3.amazonaws.com/postlock.bmp" alt="post lock acquisition"> </p> <p>This seems like truly unexpected behavior and I can't find it documented anywhere. Does anyone else know why this happens? In other places in my code (earlier), this exact same line of code correctly obtains a write lock. Consistently, however, across multiple systems it instead obtains a read lock at this place in the call stack. Hope I've made this clear and thanks for taking the time to look at this.</p> <p>--- EDIT--- </p> <p>For those mentioning asserts... this just confuses me further: </p> <p><img src="http://odeh.temp.s3.amazonaws.com/assert.bmp" alt="post assert"> </p> <p>I really can't say how it got past this assertion except that perhaps the Watch Window and the Immediate window are wrong (perhaps the value is stored thread locally, as another poster mentioned). This seems like an obvious case for a volatile variable and a Happens Before relationship to be established. Either way, several lines later there is code that asserts for a write lock and does not have one. I have set a break point on the only line of code in the entire program that releases this lock, and it doesn't get called after the acquisition shown here so that must mean it was never actually acquired... right?</p> http://stackoverflow.com/questions/1790783/sql-server-locked-tabled 0 Sql Server locked tabled Metju 2009-11-24T15:25:36Z 2009-11-24T17:04:07Z <p>Hi guys,</p> <p>I am thinking this is impossible but I wanted to make sure.</p> <p>Is there a way for me to know when a table was locked and maybe for how long? I know that I can see whether a table is currently locked, but I would like to have a "history" of locks.</p> http://stackoverflow.com/questions/1771518/ensuring-certain-private-functions-can-only-be-called-from-a-locked-state 1 Ensuring certain private functions can only be called from a locked state Dominic Rodger 2009-11-20T16:10:43Z 2009-11-20T20:40:54Z <p>Say I have a class <code>A</code>:</p> <pre><code>class A { public: A(); void fetch_data() { return 1; } void write_x_data() { // lock this instance of A private_function1_which_assumes_locked(); private_function2_which_assumes_locked(); // unlock this instance of A } void write_y_data() { // lock this instance of A private_function1_which_assumes_locked(); // unlock this instance of A } private: void private_function1_which_assumes_locked(); void private_function2_which_assumes_locked(); }; </code></pre> <p>I want to guarantee that <code>private_function*_which_assumed_locked()</code> can never be called unless <code>A</code> is locked.</p> <p>What's the best way to accomplish this? I've got 5 or so public functions which need locking. These functions never call into each other, so I'm not worried about deadlocking with these. Combined, these 5 public functions call into around 15 different private functions which need to assume the object is in a locked state. Obviously, I can't lock the private functions, since I'd get deadlocks.</p> <p>Feel free to provide answers in reasonably high-level abstractions, assuming the existences of Mutexes and <a href="http://www.ddj.com/cpp/184403758" rel="nofollow">Scopeguards</a>.</p> <p>In Python I might do something <em>like</em> this with <a href="http://www.artima.com/weblogs/viewpost.jsp?thread=240808" rel="nofollow">decorators</a>:</p> <pre><code>class locked_method(object): def __init__(self, f): self.f = f def __call__(self): # Do whatever is needed to lock self.f() # Do whatever is needed to unlock class checklocked(object): def __init__(self, f): self.f = f def __call__(self): # check locked, if not, don't call self.f(), # and yell at me loudly for screwing up. self.f() @locked_method def func1(): __function_which_assumes_locked() @checklocked def __function_which_assumes_locked(): pass </code></pre> <p>NB: I've not done much in the way of Python, so feel free to comment if my Python is wrong/stupid, but the point of this question is more the best way to accomplish this sort of thing in C++, so hopefully the Python provided is enough to give you an idea of what I want to do.</p> http://stackoverflow.com/questions/1760361/illegalmonitorstateexception-raised-with-explicit-lock-condition 1 IllegalMonitorStateException raised with explicit lock/condition CyberSnoopy 2009-11-19T01:30:58Z 2009-11-19T01:40:42Z <p>I want to have such kind of work flow using explicit lock/condition variables (It's a course project which mandates this style.): A is the main class, it asks B to do some job from time to time. B has a worker class C which constantly queries B about new jobs to do and do it. After C finishes, it will call A's callback function to notify A the job is done.</p> <p>However when I try to run the program, I get an IllegalMonitorStateException, when the callback() is trying to notify the doit() function.</p> <pre><code>exception in thread "Thread-0" java.lang.IllegalMonitorStateException at java.lang.Object.notifyAll(Native Method) at Test$A.callback(Test.java:49) at Test$C.run(Test.java:115) </code></pre> <p>I looked at the javadoc and some Q&amp;A about this exception, but still no idea why I get this.</p> <pre><code>import java.util.*; import java.util.concurrent.locks.ReentrantLock; import java.util.concurrent.locks.Condition; public class Test { public class A { private ReentrantLock lock; private Condition cond; private boolean bool; private B b; public A() { this.lock = new ReentrantLock(); this.cond = lock.newCondition(); b = new B(this); bool = false; } public void doit() { try { lock.lock(); b.letgo(); while (!bool) { System.out.println("A::doit() Block."); cond.awaitUninterruptibly(); } System.out.println("A::doit() Done."); } finally { lock.unlock(); } } public void callback() { try { lock.lock(); bool = true; cond.notify(); System.out.println("A::callback() done."); } finally { lock.unlock(); } } } public class B { private C c; private ReentrantLock lock; private Condition cond; private boolean bool; public B(A a) { this.lock = new ReentrantLock(); this.cond = lock.newCondition(); bool = false; c = new C(a, this); c.start(); } public void letgo() { try { lock.lock(); bool = true; } finally { lock.unlock(); } } public void get() { try { lock.lock(); while (!bool) { cond.awaitUninterruptibly(); } bool = false; return; } finally { lock.unlock(); } } } public class C extends Thread { private A a; private B b; public C(A a, B b) { this.a = a; this.b = b; } public void run() { while (true) { b.get(); a.callback(); } } } public static void main(String args[]) { Test t = new Test(); t.test1(); } public void test1() { A a = new A(); a.doit(); } } </code></pre> http://stackoverflow.com/questions/1756692/locking-a-queue-while-re-ordering-it-in-coldfusion 0 Locking a queue while re-ordering it in Coldfusion ciaranarcher 2009-11-18T15:14:52Z 2009-11-18T15:34:24Z <p>Hi all, please consider the following:</p> <ul> <li><p>I have a queue of objects represented as an array. </p></li> <li><p>I process them off the top of the array (at position 1) before calling <code>arrayDeleteAt()</code> to remove it from the array. </p></li> <li><p>I add new queue item at the top of the array using <code>arrayAppend()</code>.</p></li> </ul> <p>This works fine. However, I now wish to re-order the array immediately after adding an item. </p> <p>I am concerned that if a thread is taking from the queue it will find the queue order has changed between it taking the item at position 1 and it deleting the item at position 1 - because in that time an additional item has been added the the queue has been re-sorted. So I need to ensure my queue is thread-safe. </p> <p>Is there any way to doing this using the <code>cflock</code> tag? Since my add and remove code are in different places in the code the thread executing one bit of code would need to know that a thread is executing another specific bit of code and halt until that other thread has stopped executing it's code. </p> <p>Or am I better off just raising a flag while the sorting is going on and preventing anything being taken from the array while the sort is in progress? </p> <p>All this is happening in the <code>APPLICATION</code> scope on a CF 8 Enterprise server. </p> <p>Thanks in advance for any help. </p> <p>Ciaran</p> http://stackoverflow.com/questions/917640/any-way-to-select-without-causing-locking-in-mysql 3 Any way to select without causing locking in mysql? Shore 2009-05-27T19:43:03Z 2009-11-15T19:39:51Z <p>query: SELECT COUNT(online.account_id) cnt from online;</p> <p>but online table is also modified by an event,</p> <p>so frequently I can see lock by running <code>show processlist</code></p> <p>Is there any grammar in mysql that can make select statement not causing locks?</p> <p>And I've forgotten to mention above that it's on a mysql slave database,</p> <p>after I added into my.cnf:transaction-isolation = READ-UNCOMMITTED</p> <p>the slave will meet with error:</p> <pre><code> Error 'Binary logging not possible. Message: Transaction level 'READ-UNCOMMITTED' in InnoDB is not safe for binlog mode 'STATEMENT'' on query </code></pre> <p>so,Is there a compatible way to do this?</p> http://stackoverflow.com/questions/840901/inter-process-reader-writer-lock-or-file-handles-and-access-denied 0 Inter process Reader Writer lock (or file handles and access denied) pipTheGeek 2009-05-08T17:17:49Z 2009-11-14T07:00:02Z <p>Okay, some background first. We needed an inter-process reader/writer lock. We decided to use a file and lock the first byte using LockEx and UnlockEx. The class creates a file in the system temp folder when it is created. The file is created with readwrite access and share read|write|delete. We also specify DeleteOnClose so we don't leave loads of temp files laying around. Obviously AcquireReader and AcquireWriter call LockEx with appropriate flags and ReleaseLock calls UnlockEx.<br /> We have tested this class using a small application that you can run several instances of and it works perfectly. The application that uses it has a problem, which we have managed to re-produce in another small test app. In pseudo code it is </p> <pre> Create InterProcessReaderWriter Dispose InterProcessReaderWriter without acquiring any locks Launch a child process which takes a reader lock </pre> <p>The first time this runs, it works fine. If you attempt to run it again, while the child process from the first time is still holding the lock, we get an UnauthorisedAccessException when trying to open the file.<br /> This appears to be a permission issue, not a sharing violation but all the processes in this test case are running as the same user. Does anyone here have any ideas? </p> <p>I have noticed the other question that suggests using a mutex and a semaphore to achive what we want. I might change our implementation, but I would still like to know what is causing this problem.</p> http://stackoverflow.com/questions/1729457/mysql-apply-a-row-level-lock-using-mysqli 0 mySQL - Apply a row level lock using mysqli Mark 2009-11-13T14:14:44Z 2009-11-13T14:55:52Z <p>Using PHP's mysqli how do you apply a row level lock? </p> <p>Row level locks stop anyone editing currently present rows that match your criteria right? but do they stop a user inserting a row which matches your criteria?</p> <p>Thanks</p> http://stackoverflow.com/questions/1722155/am-i-right-that-innodb-is-better-for-frequent-concurrent-updates-and-inserts-than 1 Am I right that InnoDb is better for frequent concurrent updates and inserts than MyISAM? nightcoder 2009-11-12T13:24:13Z 2009-11-13T14:08:48Z <p>Hello,<br> We have a websites with hundreds of visitors every day and tens of thousands queries a day. So, some tables in the database are updated very rarely, some tables are updated few times a minute and some tables are updated ~10 times a seconds.<br> MyISAM uses table-level locking for updates and InnoDb uses row-level locking.<br> So, as I understand, for tables with frequent <strong>concurrent</strong> updates (several updates per second) it is better to make them InnoDb, and for other tables (if we don't need transactions and foreign keys of course) it is ok to be with MyISAM engine.<br> Am I right in my thoughts?</p> http://stackoverflow.com/questions/1726702/how-are-mutex-and-lock-structures-implemented 3 How are mutex and lock structures implemented? Dr. Watson 2009-11-13T02:12:52Z 2009-11-13T02:59:50Z <p>I understand the concept of locks, mutex and other synchronization structures, but how are they implemented? Are they provided by the OS, or are these structures dependent on special CPU instructions for the CPUs MMU? </p> http://stackoverflow.com/questions/340567/what-is-the-best-webdav-client-for-windows 4 What is the best WebDAV client for Windows? dr0ne 2008-12-04T13:26:27Z 2009-11-12T16:36:10Z <p>The support of locking will be preferred.</p> http://stackoverflow.com/questions/1711514/database-locking-problem 0 Database Locking Problem Tolu 2009-11-10T21:56:10Z 2009-11-11T17:11:22Z <p>Hi All,</p> <p>Pls. we've been getting <strong>A LOT</strong> of locks on a production database that's recently witnessed substantially increased traffic. We are using IdeaBlade for most of the data access.</p> <p>I got the following trace using Sql Profiler:</p> <pre><code>deadlock victim="process84af28" resource-list keylock hobtid="72057594096451584" dbid="6" objectname="cpc_db.dbo.Prefix_ChildTableName" indexname="PK_Prefix_ChildTableName" id="lock45982ac0" mode="X" associatedObjectId="72057594096451584" owner-list owner id="processb852e8" mode="X" owner-list waiter-list waiter id="process84af28" mode="S" requestType="wait" waiter id="processb855b8" mode="RangeS-U" requestType="wait" waiter-list keylock keylock hobtid="72057594096451584" dbid="6" objectname="cpc_db.dbo.Prefix_ChildTableName" indexname="PK_Prefix_ChildTableName" id="lock513c3bc0" mode="RangeS-U" associatedObjectId="72057594096451584" owner-list owner id="processb855b8" mode="RangeS-U" owner-list waiter-list waiter id="processb852e8" mode="RangeS-U" requestType="wait" waiter-list keylock resource-list deadlock </code></pre> <p>Ideas anyone?</p> <p>I'm not a DBA but this trace seems to indicate that:</p> <ol> <li><p>A process with an exclusive lock X on a row in the Child Table is attempting to acquire a Select-Update lock on the same resource (doesn't seem to make sense)</p></li> <li><p>Another process with a Select-Update lock is still trying to acquire a Select-Update lock </p></li> </ol> <p>Clarifications anyone?</p> <p>How can we minimize or eliminate the deadlocks?</p> http://stackoverflow.com/questions/1634368/is-this-lock-free-queue-implementation-thread-safe 6 Is this (Lock-Free) Queue Implementation Thread-Safe? Hosam Aly 2009-10-27T23:44:09Z 2009-11-10T16:12:00Z <p>I am trying to create a lock-free queue implementation in Java, mainly for personal learning. The queue should be a general one, allowing any number of readers and/or writers concurrently.</p> <p>Would you please review it, and suggest any improvements/issues you find?</p> <p>Thank you.</p> <pre><code>import java.util.concurrent.atomic.AtomicReference; public class LockFreeQueue&lt;T&gt; { private static class Node&lt;E&gt; { E value; volatile Node&lt;E&gt; next; Node(E value) { this.value = value; } } private AtomicReference&lt;Node&lt;T&gt;&gt; head, tail; public LockFreeQueue() { // have both head and tail point to a dummy node Node&lt;T&gt; dummyNode = new Node&lt;T&gt;(null); head = new AtomicReference&lt;Node&lt;T&gt;&gt;(dummyNode); tail = new AtomicReference&lt;Node&lt;T&gt;&gt;(dummyNode); } /** * Puts an object at the end of the queue. */ public void putObject(T value) { Node&lt;T&gt; newNode = new Node&lt;T&gt;(value); Node&lt;T&gt; prevTailNode = tail.getAndSet(newNode); prevTailNode.next = newNode; } /** * Gets an object from the beginning of the queue. The object is removed * from the queue. If there are no objects in the queue, returns null. */ public T getObject() { Node&lt;T&gt; headNode, valueNode; // move head node to the next node using atomic semantics // as long as next node is not null do { headNode = head.get(); valueNode = headNode.next; // try until the whole loop executes pseudo-atomically // (i.e. unaffected by modifications done by other threads) } while (valueNode != null &amp;&amp; !head.compareAndSet(headNode, valueNode)); T value = (valueNode == null ? null : valueNode.value); // release the value pointed to by head, keeping the head node dummy if (valueNode != null) valueNode.value = null; return value; } </code></pre> http://stackoverflow.com/questions/1689468/how-do-i-solve-a-locking-issue-in-mysql 2 How Do I Solve a Locking Issue in MySQL? Monkey Boson 2009-11-06T18:38:12Z 2009-11-10T15:06:41Z <p>I suppose this issue applies to deadlocks, live-locks, or just lock wait timeouts. </p> <p>I'm trying to figure out what query is causing a lock that is preventing another query from executing. Oracle has (if memory serves) a LOCK table that you can join onto itself to determine which queries are locking others. I need a way to accomplish the same this in MySQL.</p> <p>The scenario is that we have long-running jobs that occasionally create a nested transaction that updates the progress field. That way, we're not losing the transactional-ness of the work while keeping the user informed of the progress (i.e. percent complete). The nested transaction sometimes throws a lock timeout exception.</p> <p>This is very odd, since none of the other work should write - or even read - from the Job table. Sifting through the raw SQL log confirms this. Here is the transaction section from SHOW ENGINE INNODB STATUS:</p> <pre><code>------------ TRANSACTIONS ------------ Trx id counter 0 479427 Purge done for trx's n:o &lt; 0 479425 undo n:o &lt; 0 0 History list length 19 LIST OF TRANSACTIONS FOR EACH SESSION: ---TRANSACTION 0 0, not started, OS thread id 3192 MySQL thread id 31, query id 17417 localhost 127.0.0.1 root show engine innodb status ---TRANSACTION 0 0, not started, OS thread id 3776 MySQL thread id 29, query id 13062 localhost 127.0.0.1 root ---TRANSACTION 0 479190, not started, OS thread id 2540 MySQL thread id 23, query id 16103 localhost 127.0.0.1 testuser ---TRANSACTION 0 479422, not started, OS thread id 2536 MySQL thread id 19, query id 17338 localhost 127.0.0.1 testuser ---TRANSACTION 0 479194, not started, OS thread id 2528 MySQL thread id 20, query id 16103 localhost 127.0.0.1 testuser ---TRANSACTION 0 479189, not started, OS thread id 2776 MySQL thread id 22, query id 16103 localhost 127.0.0.1 testuser ---TRANSACTION 0 479426, ACTIVE 3 sec, OS thread id 2544 starting index read mysql tables in use 1, locked 1 LOCK WAIT 2 lock struct(s), heap size 320, 1 row lock(s) MySQL thread id 18, query id 17414 localhost 127.0.0.1 testuser Updating update Job set progress=0.000482780829770491 where id=28 ------- TRX HAS BEEN WAITING 3 SEC FOR THIS LOCK TO BE GRANTED: RECORD LOCKS space id 0 page no 23927 n bits 72 index "PRIMARY" of table "test"."job" trx id 0 479426 lock_mode X locks rec but not gap waiting Record lock, heap no 5 PHYSICAL RECORD: n_fields 12; compact format; info bits 0 0: len 8; hex 000000000000001c; asc ;; 1: len 6; hex 0000000750bf; asc P ;; 2: len 7; hex 0000005d4d2aeb; asc ]M* ;; 3: len 8; hex 0000000000000005; asc ;; 4: len 8; hex 0000000000000004; asc ;; 5: len 8; hex 0000000000000006; asc ;; 6: len 1; hex 49; asc I;; 7: len 14; hex 800000000000000002749e0e51a6; asc t Q ;; 8: len 30; hex 3c6d61703e0a20203c656e7472793e0a202020203c737472696e673e7061; asc &lt;map&gt; &lt;entry&gt; &lt;string&gt;pa;...(truncated); 9: len 8; hex 80001245d33e7e3c; asc E &gt;~&lt;;; 10: SQL NULL; 11: SQL NULL; ------------------ ---TRANSACTION 0 479418, ACTIVE 31 sec, OS thread id 960 14 lock struct(s), heap size 1024, 8 row lock(s), undo log entries 3 MySQL thread id 21, query id 17404 localhost 127.0.0.1 testuser </code></pre> <p>It appears clear that there are only two transactions, and that one of the 14 locks of transaction 479418 is blocking transaction 479426. I would love to know what the offending query is. Any ideas? Even listing the 14 locks and the queries that caused them would be great.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1702442/popen-locks-or-not-thread-safe 1 popen - locks or not thread safe? n-alexander 2009-11-09T17:18:31Z 2009-11-09T17:43:29Z <p>I've seen a few implementations of popen()/pclose(). They all used a static list of pids, and no locking:</p> <pre><code>static int *pids; static int fds; if (!pids) { if ((fds = getdtablesize()) &lt;= 0) return (NULL); if ((pids = malloc(fds * sizeof(int))) == NULL) return (NULL); memset(pids, 0, fds * sizeof(int)); } </code></pre> <p>Or this, supposedly NetBSD:</p> <pre><code>static struct pid { struct pid *next; FILE *fp; pid_t pid; } *pidlist; /* Link into list of file descriptors. */ cur-&gt;fp = iop; cur-&gt;pid = pid; cur-&gt;next = pidlist; pidlist = cur; </code></pre> <p>Is it what it looks like - a not thread safe implementation? Or am I missing something obvious? </p> http://stackoverflow.com/questions/1697820/c-multithreading-explicit-locks-in-domain-model-classes 2 C++ multithreading: explicit locks in domain model classes pachanga 2009-11-08T20:25:06Z 2009-11-09T12:17:04Z <p>Guys, I'm developing a multiplayer game application with C++ and currently in the process of choosing an appropriate multithreading architecture for it. </p> <p>The core of the application is the endless loop which essentially updates each frame all entities of the game World. Currently this World loop is singlethreaded. It's working just fine but I'd really like to make it more scalable on multicores.</p> <p>Since all World entities exist in Locations and updated in each frame as follows:</p> <pre> - World::update(dt) //dt is delta time since the last frame - Location::update(dt) - WorldEntity::update(dt) - WorldEntity::update(dt) - ... - Location::update(dt) - WorldEntity::update(dt) </pre> <p>...I was thinking about running each Location(and its updating logic) in a separate thread. This means I need to synchronize properly the World entities. And this is what I <em>really</em> don't want to to do since, I believe, explicit locking in domain classes methods is wrong and it makes the development, maintaining and debugging much-much more difficult. </p> <p>At first I was thinking about isolating Location entities from entities in different Locations by forbidding any calls between them. What are possible ways to achieve this? Store entities of each Location in a thread local storage so that they are not accessible from outside? Or maybe instead of a thread per Location use processes instead?(but that's going to complicate everything a lot). </p> <p>However even if Location entities are nicely isolated there another problem - persistence. I already have some sort of a simple generic persistence service which is running in a separate thread. It can be used in async mode, it accepts an object to be saved and returns a special future object which can be used to track the persistence process. I would love to use this service, however since it's running in a separate thread I again need to properly synchronize access to domain classes. In this case the possible option could be to implement proper cloning of domain objects so that persistence service would accept a copy of the object to be saved and no explicit locking would be needed... </p> <p>Hence the question, is all said above worth it? Or maybe I should simply add explicit synchronizing logic into all domain classes and be done with it? Or maybe there is some better option I'm not aware of? </p> <p>Thanks in advance</p> <p><strong>Update</strong> added world structure scheme thanks to Jed Smith</p> http://stackoverflow.com/questions/1698393/using-lock-with-threading-timer 0 Using lock with Threading.Timer James 2009-11-08T23:48:25Z 2009-11-09T00:00:36Z <p>Hi,</p> <p>I have a Windows Service application which uses a <code>Threading.Timer</code> and a <code>TimerCallback</code> to do some processing at particular intervals. I need to lock down this processing code to only 1 thread at a time.</p> <p>So for example, the service is started and the first callback is triggered and a thread is started and begins processing. This works ok as long as the processing is completed before the next callback. So say for instance the processing is taking a little longer than usual and the TimerCallback is triggered again whilst another thread is processing, I need to make that thread wait until the other thread is done.</p> <p>Here's a sample of my code:</p> <pre><code>static Timer timer; static object locker = new object(); public void Start() { var callback = new TimerCallback(DoSomething); timer = new Timer(callback, null, 0, 10000); } public void DoSomething() { lock(locker) { // my processing code } } </code></pre> <p>Is this a safe way of doing this? What happens if the queue gets quite substantial? Is there a better option?</p> http://stackoverflow.com/questions/1696335/message-current-thread-is-in-sleep-wait-or-join-state-locking 0 Message "current thread is in sleep,wait or join state" - locking? Tomas 2009-11-08T12:57:37Z 2009-11-08T14:31:06Z <p>Hi, I have encountered (for me) very strange problem. In my app, when pressing start button, all threads are activated, when pressing stop button, all threads are aborted and all collections are cleared. This is all happen at the main thread, while other procceses have their own threads or are running via threadpool. However, today I replaced ReaderWriterLock with ReaderWriterLockSlim and rarely, when I press "STOP" button the app will freeze. With Break all I can see the coed is stuck on the line this.someobject.TryEnterWriteLock(-1) and when I display details, the variables are all filled with this message:</p> <p>"Cannot .... because current thread is in sleep,wait or join state" </p> <p>I dont understand it - its the main application thread. I do not expect direct answer rather than advice what should I look for, this message I have never seen before. Thank you!</p> http://stackoverflow.com/questions/1696096/replacing-readerwriterlock-with-readerwriterlockslim-troubles 1 Replacing ReaderWriterLock with ReaderWriterLockSLim - troubles Tomas 2009-11-08T11:31:18Z 2009-11-08T11:43:36Z <p>Hi, due to performance problems I have replaced RWL with RWLSlim but I am experiencing troubles caused by previously (with RWL) accepted statements.</p> <p>As you can see, sometimes methodA calls another one which have inside ReadLock. The second method is also called from different places, so not always there is lock collision. Previously, AcquiringRead lock doesn't cause that problem. Is there any solution except from placing "if IsRWheld"? Thanks</p> <p>The problem is something like that:</p> <pre><code> class a { methodA() { RWLSlimObject.TryEnterWriteLock(-1); LockedList.Add(someItem) methodX(); RWLSlimObject.ExitWriteLock(); } methodX() { RWLSlimObject.TryEnterReadLock(-1); //some stuff with LockedList //if called from method A, it will throw an exc. RWLSlimObject.ExitReadLock(); } } </code></pre>