0
votes
0answers
19 views
When can lock(syncObject) throw an exception?
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.
I do not have the …
0
votes
4answers
23 views
c# xml.Load() locking file on disk causing errors
Hi all,
I have a simple class XmlFileHelper as follows:
public class XmlFileHelper
{
#region Private Members
private XmlDocument xmlDoc = new XmlDocument();
private string xmlFilePath;
…
0
votes
3answers
49 views
Concurrency / Synchronization question
I have 2 programs running on 2 different machines.
Each program has a method called updateRecord that does the following 2 things:
1. Do a SELECT query on a particular record Z
2. Do a UPDATE query on …
0
votes
2answers
27 views
Threading mechanism: preparing and releasing a cache in the background
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...
This is probably a common problem that …
5
votes
7answers
164 views
How to avoid double check locking when adding items to a Dictionary<> object in .NET?
I have a question about improving the efficiency of my program. I have a Dictionary<string, Thingey> defined to hold named Thingeys. This is a web application that will create multiple named …
1
vote
5answers
72 views
SQL Server locking problem on popular table
I've run into an issue that I need clearer heads to think through. Occasionally this stored procedure (and many others similar to it):
CREATE PROC [dbo].[add_address1]
@recno int OUTPUT,
@clientID …
0
votes
3answers
37 views
Sql Server locked tabled
Hi guys,
I am thinking this is impossible but I wanted to make sure.
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 …
4
votes
2answers
55 views
Is there any circumstance in which calling EnterWriteLock on a ReaderWriterLockSlim should enter a Read lock instead?
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:
I put a break point right …
1
vote
2answers
74 views
Using LockFileEX in C#
Background
I'm trying to implement block file locking in my C# application. The built-in FileStream.Lock method throws an exception if it is unable to acquire the lock.
The underlying LockFile …
1
vote
6answers
85 views
Ensuring certain private functions can only be called from a locked state
Say I have a class A:
class A {
public:
A();
void fetch_data() { return 1; }
void write_x_data() {
// lock this instance of A
private_function1_which_assumes_locked();
…
0
votes
2answers
52 views
+100
Can address space be recycled for multiple calls to MapViewOfFileEx without chance of failure?
Consider a complex, memory hungry, multi threaded application running within a 32bit address space on windows XP.
Certain operations require n large buffers of fixed size, where only one buffer needs …
1
vote
1answer
9 views
IllegalMonitorStateException raised with explicit lock/condition
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 …
0
votes
1answer
26 views
Locking a queue while re-ordering it in Coldfusion
Hi all, please consider the following:
I have a queue of objects represented
as an array.
I process them off the top of the
array (at position 1) before calling
arrayDeleteAt() to remove it from
…
0
votes
2answers
40 views
mySQL - Apply a row level lock using mysqli
Using PHP's mysqli how do you apply a row level lock?
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 …
3
votes
3answers
61 views
How are mutex and lock structures implemented?
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 …
