Tagged Questions
Critical section refers to either a piece of code that will run concurrently in several threads accessing global data or resources (requiring synchronisation), or a user-level spinlock combined with a mutex object under the Windows operating system. A critical section in the latter sense is functionally identical to a mutex that it cannot shared with a different process and that it is several orders of magnitudes faster in the non-congested case.
10
votes
3answers
848 views
Thread safety in C# arrays
Does having 2 different threads :
one reading from a C# array (e.g from first location),
and another one writing to the same C# array but to a different location(e.g to the last location)
is ...
8
votes
1answer
158 views
Is it Safe to use 'Unsafe' Thread Functions?
Please pardon my slightly humorous title. I use two different definitions of the word 'safe' in it (obviously).
I am rather new to threading (well, I have used threading for many years, but only very ...
7
votes
2answers
264 views
Avoiding Cache Consistency Issues in Delphi With a Critical Section?
I just read a MSDN article, "Synchronization and Multiprocessor Issues", that addresses memory cache consistency issues on multiprocessor machines. This was really eye opening to me, because I would ...
6
votes
1answer
183 views
What will be the critical section code for a shared queue accessed by two threads?
Suppose we have a shared queue (implemented using an array), which two threads can access, one for reading data from it, and other for writing data to it. Now, I have a problem of synchronization. I'm ...
6
votes
2answers
3k views
Is there a difference between Boost's scoped mutex and WinAPi's critical section?
The title says it all. In Windows environment, is Boost's scoped mutex using WinAPI's critical sections, or something else?
6
votes
6answers
3k views
Is Critical Section always faster?
I was debugging a multi-threaded application and found the internal structure of CRITICAL_SECTION. I found data member LockSemaphore of CRITICAL_SECTION an interesting one.
It looks like ...
5
votes
3answers
351 views
When should I use critical sections?
Here's the deal. My app has a lot of threads that do the same thing - read specific data from huge files(>2gb), parse the data and eventually write to that file.
Problem is that sometimes it could ...
5
votes
5answers
929 views
Delphi: Debug critical section hang by reporting call stack of running threads on lock “failure”
I'm looking for a way to debug a rare Delphi 7 critical section (TCriticalSection) hang/deadlock. In this case, if a thread is waiting on a critical section for more than say 10 seconds, I'd like to ...
5
votes
3answers
553 views
Why do the threads run serially in this console application?
I'm creating an console application which needs to run several threads in order to accomplish a task. My problem is that threads are running one after another (thread1 start -> work -> end and ONLY ...
5
votes
8answers
3k views
Win32 Read/Write Lock Using Only Critical Sections
I have to implement a read/write lock in C++ using the Win32 api as part of a project at work. All of the existing solutions use kernel objects (semaphores and mutexes) that require a context switch ...
5
votes
3answers
1k views
How can I implement a thread-safe list wrapper in Delphi?
I have a list wrapper that maintains two Tstringlists and a TClassList
I need this to be thread safe, such that:
Concurrent writes are not allowed (wait state of some sort should be entered)
...
4
votes
1answer
139 views
Delphi threading: CriticalSection not being “Release'd” when using Synchronize inside its method
In my project I have a Thread which might be modiefied by the thread itself, other thread or VCL (main app).
Thus I'm using TCriticalSection.Acquire / Release for every data access.
Under normal ...
4
votes
2answers
417 views
How do I make a critical section with Boost?
For my cross-platform application I have started to use Boost, but I can't understand how I can implement code to reproduce behavior of Win32's critical section or .Net's lock.
I want to write a ...
4
votes
3answers
182 views
Reading and writing using same critical section object
I need to write a class which reads from and writes to a file. When I do a write operation, read should not take place and also vice versa. Can I use a single critical section object for that? Like ...
4
votes
4answers
834 views
Unhandled exception / Access violation writing location in a Mutex example
I'm working through an example of protecting a global double using mutexes, however I get the error -
Unhandled exception at 0x77b6308e in
Lab7.exe: 0xC0000005: Access violation
writing ...
4
votes
4answers
369 views
Java, multiple threads with only one executing at a time
I am working on an assignment and have to create two classes, one represents a person, and the other representing a bridge. Only one person can be "crossing" the bridge at any one time, but there ...
3
votes
1answer
39 views
Critical section in MPI?
I have some code to print a 2D array to the standard output.
The problem is that when I run it, every process writes to the output and the data overlaps, rendering it unusable.
How can i build a ...
3
votes
2answers
31 views
How is the critical section associated with every Object initialized?
When you say
lock (obj)
...
.NET uses the critical section in obj to synchronize the following statements.
How is this critical section initialized? (e.g. is it initialized at construction ...
3
votes
3answers
76 views
Is 16 milliseconds an unusually long length of time for an unblocked thread running on Windows to be waiting for execution?
Recently I was doing some deep timing checks on a DirectShow application I have in Delphi 6, using the DSPACK components. As part of my diagnostics, I created a Critical Section class that adds a ...
3
votes
2answers
87 views
C# lock object inside instance object
i faced ith situation that force me to lock a lock object that is inside of instance object i want to know is it true or not?
for clarify :
public class classA
{
object objLock = new object();
...
3
votes
3answers
212 views
What exactly is a critical section?
Just want a little clarity on the this.
Imagine I use the windows api of EnterCriticalSection. I call all of them with EnterCriticalSection(&criticalsection);
This is the thread function that is ...
3
votes
1answer
217 views
Is it safe to access VT data from the other thread?
Is it safe to change VirtualTreeView data from the secondary thread ?
And if yes, should I use critical sections (or even Synchronize method) ?
I'm afraid that when I'll be writing to the VT's data ...
3
votes
4answers
248 views
Does Mutex call a system call?
CRITICAL_SECTION locking (enter) and unlocking (leave) are efficient because
CS testing is performed in user space without making the kernel system call that
a mutex makes. Unlocking is ...
3
votes
2answers
263 views
Simple threading question, locking access to shared resource or entire function?
This is a paraphrasing of a question I had before. It's a simple threading question but I can't seem to understand it.
If i have shared code:
private static object objSync = new object();
private ...
3
votes
2answers
343 views
Scenario: Global variables in DLL which is used by Multi-threaded Application
.
Hi all,
Few months back, I had come across this interesting scenario asked by a guy (on orkut). Though, I've come up with a "non-portable" solution to this problem (have tested it with small ...
3
votes
2answers
653 views
Disable Hardware & Software Interrupts
Is it possible to disable all interrupts with a ASM/C/C++ program to get full control about the processor?
If yes -> how?
If not -> how do "atomic" operation system calls work (for example entering ...
3
votes
3answers
1k views
Critical Sections leaking memory on Vista/Win2008?
It seems that using Critical Sections quite a bit in Vista/Windows Server 2008 leads to the OS not fully regaining the memory.
We found this problem with a Delphi application and it is clearly because ...
3
votes
8answers
1k views
Is the memory not reclaimed for Delphi apps running on Windows Server 2008 (sp1)?
We have a D2007 application whose memory footprint grows steadily when running on Windows Server 2008 (x64, sp1).
It behaves normally on Windows Server 2003 (x32 or x64), XP, etc... where it goes up ...
2
votes
1answer
129 views
Why is my thread blocked by a critical section not being held by anything?
I am having an issue with a critical section in C++. I'm getting a hung window and when I dump the process I can see the thread waiting on a critical section:
16 Id: b10.b88 Suspend: 1 Teb: ...
2
votes
2answers
132 views
Under what circumstances might a Windows Critical Section have a negative Lock Count?
Is there any circumstance in which the LockCount field of a RTL_CRITICAL_SECTION structure in Windows can legitimately be negative?
We're tracking a VERY elusive crash and one symptom we're seeing is ...
2
votes
3answers
369 views
VC++ 2010: Weird Critical Section error
My program is randomly crashing in a small scenario I can reproduce, but it happens in mlock.c (which is a VC++ runtime file) from ntdll.dll, and I can't see the stack trace. I do know that it happens ...
2
votes
1answer
47 views
why there is a memory error while I push a object which contain a critical_section?
class Wrap
{
CRITICAL_SECTION cs_;
public:
Wrap() { InitializeCriticalSection(&cs_); }
~Wrap() { DeteteCriticalSection(&cs_); }
Wrap & operator=(const Wrap& rhs) { return ...
2
votes
3answers
252 views
Difference between interlocked variable access AND critical sections interlocked increment
can someone help explain the different between interlocked variable access AND critical sections interlocked increment in c++? thanks, much appreciated, in advance.
2
votes
4answers
286 views
Fair critical section (Linux)
On a multi-threaded Linux application I use a mutex for critical sections. This works very well except for the fairness issue. It can happen that a thread leaving a critical section and re-entering ...
2
votes
1answer
128 views
Large number of critical sections
Environment: C++,VS 2008, MFC, app for Windows XP.
I have to access & modify a tree structure in 2 threads. My idea is to protect each node with an CCriticalSection that would lock each and every ...
2
votes
2answers
243 views
Windows Critical Section strange behaviour
I have two shared global variables
int a = 0;
int b = 0;
and two threads
// thread 1
for (int i = 0; i < 10; ++i) {
EnterCriticalSection(§);
a++;
b++;
std::cout ...
2
votes
2answers
465 views
Multithreading and Critical Sections Use - C++
I'm a little confused as to the proper use of critical sections in multithreaded applications. In my application there are several objects (some circular buffers and a serial port object) that are ...
2
votes
1answer
319 views
Replace critical section with SRW lock
If the application is targeted on Windows Vista or later, could we replace all critical sections with SRW locks? Since critical section is mutually exclusive, for usage it is equivalent to SRW locks ...
2
votes
2answers
602 views
Critical section initialization when creating thread-safe singleton (C++)
I'm trying to do the same thing as suggested in this solution:
http://stackoverflow.com/questions/164496/how-can-i-create-a-thread-safe-singleton-pattern-in-windows/164640#164640
But, where should ...
2
votes
3answers
1k views
How to use Multiple Variables for a lock Scope in C#
I have a situation where a block of code should be executed only if two locker objects are free.
I was hoping there would be something like:
lock(a,b)
{
// this scope is in critical region
}
...
2
votes
2answers
307 views
Delphi 2009: How do I prevent network application from leaking critical section?
As part of Vista certification, Microsoft wants to make sure that an application exits without holding on to a lock (critical section):
TEST CASE 31. Verify application does not break into a ...
2
votes
3answers
951 views
How to protect critical section in PHP?
I did some search about this topic but found nothing valuable.
If I don't use PHP default session handler, there is no session lock at request level. So, I have to protect critical section by ...
2
votes
4answers
374 views
Do I need to lock object when reading from it?
I am writing a program where there is an object shared by multiple threads:
a. multiple write threads write to the object (all running the same function)
b. a read thread which accesses the object ...
2
votes
4answers
2k views
pthreads : pthread_cond_signal() from within critical section
I have the following piece of code in thread A, which blocks using pthread_cond_wait()
pthread_mutex_lock(&my_lock);
if ( false == testCondition )
...
2
votes
2answers
219 views
Starvation of threads with Windows 2003 SP2
To our great surprise we found recently this. With SP1 for Windows 2003 Microsoft changed a way critical sections behave. Earlier threads wanting to access them were served in FIFO manner. Right now ...
2
votes
5answers
1k views
Critical section - to be or not to be?
I`m writing a chat using WinSock2 and WinAPI functions. And I have a little trouble.
I store the std::vector of client connections on server. When new client connects, new thread starts and all work ...
2
votes
6answers
3k views
Problems using EnterCriticalSection
I need to work with array from several threads, so I use CRITICAL SECTION to give it an exclusive access to the data.
Here is my template:
#include "stdafx.h"
#ifndef SHAREDVECTOR_H
#define ...
2
votes
3answers
621 views
What is wrong with this tiny piece of mutex code?
// A Mutex allows threads mutually exclusive access to a resource.
//-----------------------------------------------------------------------
class Mutex
{
private:
CRITICAL_SECTION m_mutex;
...
1
vote
4answers
129 views
Critical sections and the singleton pattern
Background: One of the problems with using a local static variable in a function as an implementation of the singleton pattern is that if more than one thread calls the function for the first time at ...
1
vote
4answers
115 views
C++ Critical Section not working
My critical section code does not work!!!
Backgrounder.run IS able to modify MESSAGE_QUEUE g_msgQueue and LockSections destructor hadn't been called yet !!!
Extra code :
typedef ...