Tagged Questions

5
votes
5answers
830 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 lo …
3
votes
3answers
391 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 i …
2
votes
2answers
91 views

Disable Hardware & Software Interrupts

Hello! 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 …
2
votes
6answers
507 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 requi …
2
votes
6answers
504 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.. …
2
votes
6answers
814 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 …
2
votes
3answers
338 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_SE …
1
vote
3answers
50 views

CriticalSection

hey, i'm not sure about something. when i use critical_section/mutex/semaphor in c++ for example , how does the busy_wait problem being prevented ? what i mean is when a thread …
1
vote
2answers
86 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 …
1
vote
5answers
453 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 s …
1
vote
3answers
219 views

Is SetEvent atomic?

Is it safe to have 2 or more threads call the Win32 API's SetEvent on the same event handler not being protected by a critical section?
0
votes
4answers
54 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 ) pthread_c …
0
votes
1answer
76 views

Question on critical section algorithm

The Operating System Concepts 6th edition present one trival algorithm to implementate ciritical section. do{ while (turn != i); critical section trun = j; remainder s …
0
votes
2answers
216 views

Multiple producer/consumer and critical section code problem

I am attempting a multiple producer/consumer problem in C, but its not working as expected. The following is some pseudo code to represent my implementation. Thread thread1; Threa …
0
votes
1answer
103 views

What is the relation ship between CRITICAL_SECTION and CCriticalSection

What is the relation ship between CRITICAL_SECTION and CCriticalSection. is CCriticalSection a wrapper of CRITICAL_SECTION? BTW: I think the following code is meanless because th …

1 2 next
15 30 50 per page