A mutex ("mutual exclusion") is a mechanism to ensure integrity when the same data or resource is accessed (in particular, changed) concurrently from several threads.
0
votes
2answers
40 views
Could you please explain why this Mutex helping allow to run only 1 instance of application at a time doesn't work (C#)?
Here is the article I read http://kristofverbiest.blogspot.com/2008/11/creating-single-instance-application.html, followed the steps by the article, I have the following code, I'm almost sure it can't ...
1
vote
1answer
112 views
C++ on singleton
I've a singleton class and I'm sure that the first call of the singleton is done by only one thread. I've implemented singleton with lazy initialization.
class MySingleton : private ...
0
votes
1answer
20 views
Multithreading logic
Multihreading is way over me. I do not ask for a specific code, instead I'd like you to help me on the logical structure of my problem.
We have a restaurant with only 2 waiters, which are taking ...
0
votes
1answer
38 views
Way to work with threads properly in C#
I have some difficulties designing the way my code should work:
Serial #1 (receives data at any time) invokes Routine() if some particular received value A is > constant1, but only if Routine() is ...
0
votes
3answers
44 views
strategy for choosing the location of mutex lock and unlock in a multithreading program
in the following code snippets, I need to protect connfd, because it can change frequently in accept() call.
void *deal_conn(void *arg){
int connfd;
connfd = *((int*)arg);
....
...
0
votes
2answers
35 views
Dining philosophers and mutex initialization
I am trying to solve dining philosophers problem.So I pretty much made entire code but the problem is that I can't initialize monitors(i've made pseudocode which I re-written in c++) so really I can't ...
0
votes
1answer
58 views
one-producer and multiple consumer : should I use N semaphore if there are N consumers and N types of products
I have a program with 1 producer thread and N consumer threads. There are N types of producet, so I set up N FIFO queues(products should be delivered to the consumer in sequence). like: FIFO_queue_t* ...
-2
votes
0answers
30 views
This might be an alternative to locks. Why does it not work, or how is this technique called? [closed]
Test-and-set and compare-and-swap instructions (and the semaphores and mutexes built on top of them) can take far longer to be processed than ordinary instructions, which is time wasted at the expense ...
1
vote
1answer
22 views
how to check packet availability in libpcap
I use libpcap to capture packets, and I need to put the packets into a FIFO queue as soon as a packet is available. But the FIFO queue is shared by 2 threads, one thread call pcap_next() and put ...
0
votes
0answers
12 views
Mutex only run a single instance of an app, but with multiple users on same PC
I found the following link which helped me start my process on this project: WPF mutex for single app instance not working and the solution worked for me but I still have the problem that it will not ...
0
votes
1answer
49 views
About boost::lock_guard and boost::unique_lock
I was hoping someone could tell me if my understanding on the following 3 locks is correct and possibly add to it. my main concern is speed with minimum overhead.
boost::lock_guard
...
0
votes
1answer
19 views
Output for sample code for an upcoming exam concerning pthread
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
int token = 2;
int value = 3;
void * red ( void *arg ) {
int myid = * ((int *) arg);
...
2
votes
2answers
61 views
is it reasonable/sensible to create many thread condition variables and mutexes?
I have a program with 1+N threads, and N FIFO queues, like: FIFO_queue_t* fifo_queque[N].
one thread is responsible for filling these N FIFO queues.
And each of the other threads is related to 1 FIFO ...
1
vote
3answers
43 views
Mutex when returning object value
If I understand how C++ compilers handle local variables then IsShutdownInProgress() does not need any locking since the shutdownInProgress static variable will be placed on the stack. Am I correct?
...
0
votes
2answers
33 views
understanding of pthread_cond_wait() and pthread_cond_signal()
generally speaking, pthread_cond_wait() and pthread_cond_signal() are called as below:
thread 1:
pthread_mutex_lock(&mutex);
pthread_cond_wait(&cond, &mutex);
do_something()
...
0
votes
2answers
43 views
Best file mutex in .NET 3.5
I want to use some mutex on files, so any process won't touch certain files before other stop using them. How can I do it in .NET 3.5? Here are some details:
I have some service, which checks every ...
0
votes
1answer
34 views
Can't execute first thread with mutex
I want to finish my threads with a mutex. The first thread won't execute, thread 2 & 3 execute.
Does anyone know what this problem could be? Sometimes thread 1 is executed but then 2 or 3 is not ...
1
vote
1answer
45 views
Multithreading, can't make another thread working
I'm trying to create a thread for every request that is comming in. This is a short example from what i'm making. The problem is that i can write the first incomming request to a list but when i try ...
1
vote
2answers
53 views
Mutex map data structure
the problem
I have a directory D that I want to put (K, V) pairs into
void save(K, V) saves file name K with contents V to directory D
Has "fire and forget" semantics - function may return before ...
-2
votes
1answer
30 views
Basic deadlock issue, one mutex in multiple functions
I'm writing a program in C and which has 3 functions in it, A, B and C. I have a static mutex as global which is locking access to these functions. The functions A, B and C and be called in any order ...
0
votes
1answer
24 views
I2C concurrent access on Linux, mutex
I'm writing a multithread C program in embedded Linux that accesses from userspace a number of I2C devices (slaves). Also, I access the same I2C device from multiple threads. I'm using SMBUS functions ...
3
votes
5answers
220 views
how can I use something like std::vector<std::mutex>
I have a large, but potentially varying, number of objects which are concurrently written into. I want to protect that access with mutexes. To that end, I thought I use a ...
1
vote
1answer
30 views
Why WaitForMultipleObjectsEx acquires mutex during APC?
I have 5 threads (on a multicore system) that simultaneously wait for:
A mutex M to be acquired
An event E to be signaled
I'm using WaitForMultipleObjectsEx(..., TRUE, INFINITE, TRUE) since the ...
0
votes
1answer
43 views
Isn't a read/write lock actually only a write lock?
We have an assignment where we are given a simple spinlock (modified so that it will catch errors and deadlocks and alert us) and a waitqueue, and we need to build a read/write lock out of it.
Since ...
2
votes
4answers
49 views
Make sure one copy of php script running in background
I'm using cronjob to run php script that will be executed every 1 minute
I need also to make sure only of copy is running so if this php script is still running after 2 minutes, cronjob should not ...
5
votes
3answers
108 views
C++ - Threads without coordinating mechanism like mutex_Lock
I attended one interview two days back. The interviewed guy was good in C++, but not in multithreading. When he asked me to write a code for multithreading of two threads, where one thread prints ...
1
vote
1answer
45 views
How best to keep a job queue clean of retry/duplicate jobs (using sidekiq and redis-semaphore)
I have a rails app that fetches a lot of emails from multiple IMAP accounts.
I use sidekiq to handle the jobs.
I use sidetiq to schedule the jobs.
I use redis-semaphore to ensure that recurring jobs ...
1
vote
2answers
45 views
Qt example: no mutex lock when reading, why?
I am looking at this example, and it raises a queston for me: when looking at this file a mutex is being used when accessing the global variable m_abort when its being changed. But when the run method ...
0
votes
2answers
40 views
Mutex to read-only variable
The Language is C and my app has multiple threads. I have an int array that its values can be changed and i have mutex to read and write its values. But since the base address of the array (like ...
2
votes
2answers
52 views
C++ atomic with non-trivial type?
Reading the docs on boost::atomic and on std::atomic leaves me confused as to whether the atomic interface is supposed to support non-trivial types?
That is, given a (value-)type that can only be ...
0
votes
1answer
49 views
Difference between Boost and Pthread condition variables
I found some code using boost threads, mutexes and condition variables but I wanna try to rewrite this code with posix threads.
This is the Boost code, I´ve found here:
void push(Data const& ...
1
vote
1answer
29 views
Open a mutex shared with a service
I have a service that creates a thread with a loop that should run until the mutex is signalled by another process. I have the following in my service code
private readonly Mutex ...
0
votes
1answer
75 views
C++ Syncing threads in most elegant way
I am try to solve the following problem, I know there are multiple solutions but I'm looking for the most elegant way (less code) to solve it.
I've 4 threads, 3 of them try to write a unique value ...
0
votes
1answer
25 views
monitor and mutex synchronization in c
I will implement merge sort using mutexes and monitors in C but I couldn't find a good source. How can I implement mutex and monitor in C.
I am using Linux(Ubuntu).
1
vote
1answer
43 views
Boost mutex and class member access
I have hit a problem while trying to use BOOST threads 1.53.0. Since I am a newbie to BOOST, I have now a problem where a large class from a project needs to have some thread mode processing.
While ...
-3
votes
2answers
40 views
how to make a mutex lock among programs, liike mutex lock among processes [closed]
in a remote host, I want to run 3 programs A , B and C
but I want them to run at different time
so if A is running, B and C can't run
my idea is to create a mutex lock among these programs
like mutex ...
0
votes
1answer
37 views
How does a semaphore actually work when all N processes are inside the critical section?
As far as I understand, a mutex is used to lock the critical section so that no other threads can access it when already a thread is using it. So mutex avoids multiple threads trying to use or change ...
1
vote
1answer
65 views
Is mutex in pthread library in c++ the same like synchronized keyword from Java
Is mutex in pthread library in c++ the same like synchronized keyword from Java (whatever call functions I put inside is thread safe)?
I have list of cities
pthread_t thread1;
class City{
...
0
votes
1answer
33 views
AbandonedMutexException on single instance app
I have a .net 3.5 / c# / wpf app that I don't want users to be able to run multiple instances of. So I use the following in my app.xaml.cs
protected override void OnStartup(StartupEventArgs e)
{
...
0
votes
0answers
25 views
Semaphores using ucontext.h
Basically I have spent 15 hours without sleep trying to figure out semaphores. Can anyone explain to me what is wrong with my current code? I believe my problem is with P(). I can't seems to figure ...
0
votes
2answers
62 views
Mutex when writing to queue held in map for thread safety
I have a map<int, queue<int>> with one thread writing into it i.e. pushing messages into the queues. They key refers to a client_id, and the queue holds messages for the client. I am ...
0
votes
1answer
19 views
pthread_mutex not updating fast enough, so one thread “hogs” the lock.
I have a c++ program where I'm creating multiple threads and having them access a shared array.
Everytime I want one thread to access the array, I call
pthread_mutex_lock(&mutex);
access the ...
1
vote
1answer
128 views
In a simple C++ 11 four-thread program, my two consumer threads are not returning if I comment stdout print lines
I am learning my way through synchronization primitives with C++ 11. I have to write those methods for a template class which is a FIFO queue whose maximum number of elements is declared at ...
0
votes
3answers
99 views
Mutex not working properly
So this code is in program.cs and is supposed to check if connection is available and if there is another instance already running. If there is, message box which informs the user, and asks him if he ...
-2
votes
2answers
77 views
Return value from Mutex
I have example with mutex. CurrentValue - member of Class
int Class::NextValue()
{
mutex.lock();
++CurrentValue;
++CurrentValue;
int localValue = CurrentValue;
mutex.unlock();
...
0
votes
1answer
91 views
Doubts in code of multi-threading using ArrayBlockingQueue and mutex
I am trying to write a multithreaded code. But seriously I can't understand from where can I start. My head is banging also. Please help me.
My task is,
There is one queue of length 1, known as ...
4
votes
2answers
53 views
Avoid from running more than one instance
I'm trying to set a mutex in order to allow running my application in one instance only.
I wrote the next code (like suggested here in other post)
public partial class App : Application
{
...
0
votes
1answer
27 views
Creating a thread and passing input through the parent
I'm trying to use a mutex to make a thread wait for user input from the parent thread. The current problem I'm facing is that the child doesn't wait, even though I have a mutex to lock and unlock, ...
0
votes
1answer
29 views
Proper coordination of state between 2 processes
I have 2 processes that i'd like to synchronize:
The first process (client) launches another process (a server app that starts some WCF services), and waits for it to reach a certain state.
I'd like ...
0
votes
3answers
139 views
How to avoid `deque iterator not dereferencable` in a std::deque ? Locks?
Currently in my project I have two static methods PushObjects and ProcessObject. The PushObject method pushes back data to a static deque and this method can be accessed by multiple threads but the ...




