2
votes
4answers
80 views
iPhone app running while screen locked
Here is something I am trying desperately to get to work:
I have an app that polls the GPS module in specified intervals and then sends out coords out to a server using Unix calls …
0
votes
5answers
59 views
Why would this SELECT statement lock up on SQL Server?
I have a simple query like this
SELECT * FROM MY_TABLE;
When I run it, SQL Server Management Studio hangs.
Other tables and views are working fine.
What can cause this? I've …
0
votes
3answers
42 views
Threading and un-safe variables
I have code listed here: Threading and Sockets.
The answer to that question was to modify isListening with volatile. As I remarked, that modifier allowed me to access the variable …
1
vote
1answer
22 views
What is Distributed Lock Server
What is Distributed Lock Service (or Server)? When it needs to be used?
0
votes
4answers
72 views
Determine thread which holds the lock on file
Hi,
I know there is no WINAPI which would do it, but if a thread is hung and holds an open handle of file. how do we determine the thread id and Terminate it within our processes. …
4
votes
2answers
80 views
C# locking read while writing binary file
Hi,
I am trying to figure out how to write a binary file with a FileStream and BinaryWriter, and keep the file locked for read while I am writing. I specifically dont want other …
1
vote
1answer
30 views
xml Column update and Locking in Sql Server
Hi,
I have a few windwos services. They get xml column from Sql server manipulate and update it.
Service A- Gets XML
Service B- Gets XML
Service A- Updates XML (it will be lost)
…
1
vote
2answers
85 views
accessing disposed object
hi,
i am using following class to provide access to language resources in an asp.net application. i render the page for selected language by getting the text values from database. …
1
vote
2answers
51 views
lock vs AcquireReader & writer locks
I have found possible slowdown in my app so I would have two questions:
What is the real difference between simple locking on object and reader/writer locks?
E.g. I have a collec …
2
votes
5answers
133 views
C# Multithreading - Telling a waiting process that the first process has finished using the locked code?
I understand that when developing multithreaded applications you must synchronize access to shared memory using either, for instance, a monitor or a lock.
QUESTION
How do you tel …
1
vote
3answers
91 views
Multi Threading locks and monitor class not working
I have a file that is read and written to. I need to make sure when its been written to, nobody else will try to write to it.
I put a lock on the whole function which allows to ei …
2
votes
3answers
69 views
C# Lock WinForm Controls
In a program I have written users can add controls to the form and move them around and set some properties in a pseudo design mode. I want to be able to lock all these controls i …
0
votes
2answers
126 views
java.lang.IllegalMonitorStateException: (m=null) Failed to get monitor for
Why may this happen? The thing is that monitor object is not null for sure, but still we get this exception quite often:
java.lang.IllegalMonitorStateException: (m=null) Failed to …
6
votes
4answers
136 views
Do sequence points prevent code reordering across critical section boundaries?
Suppose that one has some lock based code like the following where mutexes are used to guard against inappropriate concurrent read and write
mutex.get() ; // get a lock.
T localV …
2
votes
1answer
88 views
DataReader Behaviour With SQL Server Locking
We are having some issues with our data layer when large datasets are returned from a SQL server query via a DataReader. As we use the DataReader to populate business objects and s …
