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 ...

learn more… | top users | synonyms

1
vote
1answer
100 views

Critical section in reading data by threads

I have two different threads (beside main thread). The first one sends to the main thread PostMessage with data. As a result of receiving the message main thread modifies the corresponding global ...
2
votes
2answers
46 views

using dispatch_sync as a mutex lock

Here is what I need to do. I hope dispatch_sync would be the best way to do it using GCD I have a certain piece of critical section code that is placed in the applicationDidBecomeActive callback in ...
0
votes
1answer
106 views

Delphi, secure and fast access to partial elements of a static array

I have static array with 100 items type of record: TMy_Array:array[1..100] of T; where T is: T = record A: double; B: Date; C: String; end; I have n similar threads modifying their ...
0
votes
1answer
57 views

Nested locks (critical section) not working

I am learning about Critical Section (for the purpose of multithreading) and I found a class online using it. I don't understand why my code doesn't work though - I should get "success" on the console ...
0
votes
2answers
98 views

Using Critical Sections/Semaphores in C++

I recently started using C++ instead of Delphi. And there are some things that seem to be quite different. For example I don't know how to initialize variables like Semaphores and CriticalSections. By ...
0
votes
0answers
83 views

Critical section in kernel CUDA? [closed]

I want to count a number of PI. I want to implement a critical section in the kernel of CUDA. I don`t know how to do it. I will show you my kernel: __global__ void kernelPI(int *d_hits_on_blocks, ...
1
vote
1answer
93 views

Critical section via constexpr

In embedded programming there is a need to create atomic sections of code - so called critical sections. They are usually implemented via macros, for example, like this: #define ENTER_CRITICAL() int ...
0
votes
1answer
55 views

critical section definition

in this example code below, where is the "critical section" exatly?. after "sem_wait()" ? #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <pthread.h> ...
0
votes
1answer
85 views

Is there anything Faster than a boost mutex for this code?

Currently in my code I have sections such as this boost::mutex Mymutex void methodA() { boost::mutex::scoped_lock lock(Mymutex); ...... ...... ...... } I read that critical sections ...
0
votes
0answers
21 views

How does this become mutual blocking?

int turn = 1; cobegin p1: while (1) { while (turn != 1); /*wait*/ CS_1; turn = 2; program_1; } // p2: while (1) { while (turn != 2); /*wait*/ CS_2; turn = 1; program_2; } ...
3
votes
1answer
65 views

program spinning on pthread lock

After banging my head against a wall for a few hours during this exercise, I am stuck at that wall. First off, this is a program designed to find and print all prime numbers between 1 and ceiling, ...
2
votes
4answers
112 views

Critical section queue

Is there no concept of queue in Windows critical sections? I have the following render loop in a dedicated thread: while (!viewer->finish) { EnterCriticalSection(&viewer->lock); ...
5
votes
1answer
103 views

Do I need a fence or barrier or something when mutex locks/unlocks are buried deep in function calls?

I recently learned that compilers will optimize your code by rearranging instructions, and that this can be controlled by using barriers. IIRC, locking a mutex makes a barrier, and unlocking a mutex ...
0
votes
0answers
42 views

When to use critical sections and barriers in OMP?

Do I have to use a critical section when reading data from a common vector/array from each thread? Could there be any conflicts? #include <omp.h> #include <vector> // ... using namespace ...
-1
votes
1answer
74 views

Will Peterson's solution work correctly on modern CPU architectures? [closed]

I am studying operating systems from Operating System Concepts by Silberschatz, Galvin, and Gagne. On page 229, the book states this about Petersons Solution : Because of the way modern computer ...
1
vote
0answers
79 views

CRITICAL_SECTION in auto_ptr and no DeleteCriticalSection call

I have in front of me some code that I'm not quite sure I think is ok. A critical section is put into a auto_ptr and DeleteCriticalSection is never called on it. But I seem to remember that instances ...
0
votes
1answer
75 views

Native types, critical section and handles not defined in c++ program

I have a compilation problem that I just can't explain in a c++ program on Visual Studio 2012. The error appears at several places in the program, here is an example: #ifndef __WINMUTEX_H__ # ...
-1
votes
2answers
111 views

Critical section issue in iOS [closed]

This is my scenario: I've a class with one instance method that performs a network call, synchronously or asynchronously depending on some params. I create instances of such class in several ...
0
votes
0answers
43 views

OCI createConnection stuck

I have a C++ program which uses OCCI to connect to an Oracle DB (opens a thread to do the connection). I ran it a couple of times, and then I got to a point where the thread is stuck on ...
0
votes
1answer
101 views

Do threads/processes have to disable interrupts while executing a critical section

Let us consider a scenario:- A Kernel thread acquires a lock and is in the middle of a critical section when an interrupt occurs. The interrupt handler runs and arrives at the same critical section ...
0
votes
2answers
37 views

Multithreaded synchronization primitive

I have the following scenario: I have multiple worker threads running that all go through a certain section of code, and they're allowed to do so simultaneously. No critical section surrounds this ...
1
vote
2answers
111 views

Lock/monitor/critical section extension?

How is it called when critical section is extended in subclass or caller function? Suppose class A has synchronized methods m1 and m2 class A { public synchronized void m1() {} public ...
1
vote
1answer
45 views

How can I apply conditional thread safety upon operation?

Consider you have a shared memory (List) which will serve as the "critic section". Now, consider you that you always have items in the list for these scenarios and you want that your system will ...
1
vote
3answers
96 views

Try-catch-like Behaviour with Skipping Critical Code in C [duplicate]

Possible Duplicate: ANSI C equivalent of try/catch? Is there a way to skip critical code ? More or less like try-catch in modern programming languages. Just now I'm using this technique to ...
0
votes
1answer
85 views

Critical section in perl

Is it possible to enter critical section in perl, to hold other threads and do some calculations in single thread? Like in .NET: lock(_syncRoot) { // Single-threaded zone }
0
votes
0answers
14 views

Is push critical in parallel for omp

In a parallel for omp, when push a value to a vector in a for loop, does it have to be critical?
0
votes
1answer
115 views

Does multiple QMutex needed for every critical section?

should id define one QMutex for all of my critical sections? or i should define one QMutex for each critical sections? is there any identical concept in Qt like lock(object) {...} in c Sharp?
2
votes
3answers
61 views

How to parallelize updating sums with OpenMP

The following loop iterates over all edges of a graph, determines if the end nodes belong to the same group, and then adds the edge weight to the total edge weight of that group. // TODO: parallel ...
2
votes
1answer
71 views

Enforce a code segment be atomic inside custom linux kernel system call

I've been trying to implement a linux system_call that has been giving me problems and I suspect it's because there is no locking(or maybe preemption) going on with my code. There is a critical ...
0
votes
0answers
182 views

Trouble in updating buffer data using glBufferSubData, GL_INVALID_OPERATION error

Need Help in finding the source of the problem in the following summary Summary: Allocate 100 MB buffer object. Use worker thread to fill in the data as chunks of 512 floats by reading from a ...
4
votes
1answer
367 views

Understanding TCriticalSection and Synchronize

I would like to confirm here if I understood correctly how TCriticalSection and Synchronize operate. As far as I know right now Synchronize uses SendMessage (update: or at least used it in older VCL ...
8
votes
5answers
228 views

do integer reads need to be critical section protected?

I have come across C++03 some code that takes this form: struct Foo { int a; int b; CRITICAL_SECTION cs; } // DoFoo::Foo foo_; void DoFoo::Foolish() { if( foo_.a == 4 ) { ...
6
votes
1answer
135 views

Robust CRITCAL_SECTION for shared memory?

We have some data structures that we are sharing across processes on Windows. (Via a shared data segment in a DLL that's loaded by all these processes.) We need to synchronize some accesses and we ...
1
vote
1answer
256 views

Android 4: starting child activity from sensor event listener: synchronizing fails

I'm trying to start a child activity from the sensor event listener if the smartphone is upside down. The initial code i wrote looked like this: public class MySensorListener implements ...
0
votes
1answer
86 views

Win32 - does the CRITICAL_SECTION struct must have a specific (4/8 byte) alignment?

I am working on a project which is using 1 byte alignment by default, including in places that use the CRITICAL_SECTION struct. I am investigating a certain deadlock and I can see that the data in the ...
4
votes
4answers
142 views

Multithreading. Do I need critical sections for read-only access?

I have a bunch of threads. They should access a singleton containing configuration data which is initialized once when the singleton is created. Hence on the first access. So further actions on the ...
0
votes
0answers
128 views

Implementing Critical Section requests in Java

I'm creating a replicated file system for a programming assignment that makes use of mutual exclusion. Idea is: 3 server nodes, 6 client nodes. Clients send WRITE requests to the servers, which are ...
0
votes
2answers
265 views

Process synchronization

Factors designating a piece of code as critical section As of I understand, process synchronization is employed using kernel data structures such as semaphores, to prevent concurrent access to the ...
1
vote
2answers
214 views

Leaving critical section after thread crash

I've got thread executing commands from list do { commandExec->criticalSection.EnterCS(); if (!commandExec->commands.empty()) { ...
0
votes
2answers
133 views

Can't get critical section to be atomic

I'm currently learning about critical section & semaphores and I'm stuck atm with this part. I hope you guys can give me an insight. I have these 3 types of threads: one will do pop() on a stack, ...
1
vote
1answer
50 views

I there a way to lock 2 or more locks or monitors atomically?

I there a way to lock 2 or more locks or monitors atomically? I mean, suppose my thread wishes to lock 2 locks and waits until both of them are free, i.e. never lock one then wait for another?
0
votes
2answers
102 views

Can a Windows CRITICAL_SECTION object be configured to deny recursive access?

By default, a CRITICAL_SECTION object is recursive. Can this behaviour be configured like a pthread mutex to enable or disable recursive thread access? To clarify in response to the comments: I am ...
0
votes
0answers
39 views

critical section in a clustered environment

This may sound really silly but i need to clear my doubt. I am making this bus ticket booking system just like RedBus as a part of my project.I was just wondering how it would work in a clustered ...
0
votes
1answer
237 views

How do Binary Semaphores proceed?

I was studying binary semaphores when the following question turned up: Suppose there are 3 concurrent processes and 3 binary semaphores... The semaphores are intitialised as S0=1, S1=0, S2=0. The ...
3
votes
2answers
187 views

C++ partial mutex/critical section lock

I am working in C++ in VS2010, and I have a container class with a bunch properties (getters and setters) (actually a bunch of objects with properties – but lets simplify it and assume that it is just ...
7
votes
1answer
391 views

pause instruction in x86

I am trying to create a dumb version of a spin lock. Browsing the web, I came across a assembly instruction in x86 which is used to give hint to a processor that a spin-lock is currently running on ...
-2
votes
1answer
194 views

How do I detect critical sections in a C program by analyzing it programmatically? [closed]

I want to create a tool which analyzes a C program for critical sections during the compilation phase. I am looking for the right algorithm which would let me do this. It can be at any phase of the ...
0
votes
1answer
135 views

OMP Critical Illegally Nested

I get an error when running my program, which says: A '#pragma omp critical' is illegally nested in one of the same name It dies when it enters one of my criticals. I am super new to OMP, & ...
1
vote
2answers
135 views

critical section prob while loop

Okay, i was reading the critical section problem from galvin's sixth edition. Thing is, the algorithm used in the problem has a while loop as: do { while(turn!=i); critical section turn=j; ...
0
votes
0answers
29 views

Concurrency Issues in Wamp Server

I have been coding Database enabled websites in Wamp. Does the Mysql server in Wamp automatically handles concurrency issues or is it my responsibility as a programmer to ensure that no critical ...

1 2 3 4 5