Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
101 views

c++ multithreading synchronization

Here is a simplified version of my problem. There are N threads executing following 3 instructions in an infinite loop: A -> B -> C -> A -> B -> C -> A -> B -> ....... I ...
5
votes
1answer
580 views

compare and swap vs test and set

Could someone explain to me the working and differences of above operations in multi-threading?
4
votes
2answers
191 views

Librarian resource allocation problem with Semaphore in Java

Please help me with this two-part question. Here is the first part: (Part 2: I have updated the code since - requirements have changed a bit.) I am trying to implement the Librarian problem in ...
3
votes
1answer
71 views

Learning to implement thread pool - signaled events getting lost when using autoresetevent

I am a strong believer in learning by reinventing. With that state of mind, I set out to implement custom thread pool. The objective that I set for myself was following: To be able to queue work ...
3
votes
3answers
187 views

Java Thread Pool Synchronization

I would like to perform the following algorithm - this must be done in Java for(int i = 0; i< 100; i++){ create 8 threads which perform a task wait for all threads to finish } It is ...
2
votes
1answer
36 views

How to design a thread syncronisation in this case

My requirement is as follows There is a process with multiple threads. One of the threads (T1), gets triggered by a user event There is a task that needs to be done in a seperate thread(T2), which ...
2
votes
1answer
77 views

Volatile vars and multi-core thread synchronization!

I have several threads executing concurrently and checking a value of a field in their own object. The field is set by the launch thread like this: for (i = 0; i < ThreadCount; i++) { ...
2
votes
2answers
305 views

C#.NET Threading Question

I am facing an issue with communication between threads in a C#.NET application. Hope someone will guide me in the right direction about the possible solutions. I have an application in C#.NET.It is ...
1
vote
3answers
68 views

How to achieve thread synchronizing without effecting the efficiency in java

Say using following function: getUnique(){ MyObject obj = getValueFromDb(); obj.modifyIt(); obj.commit(); } When simultaneous call is made to this method several threads share same ...
1
vote
2answers
629 views

CMutex::Lock vs. CSingleLock::Lock

I've been tapped to support some legacy code, and I'm seeing some things that cause me to scratch my head in confusion. In some sections of code, I see that a class instance uses a CMutex instance to ...
0
votes
0answers
67 views

Is this Windows thread synchronization strategy for my DirectShow push source filter (fairly) bulletproof?

I have a DirectShow push source filter written in Delphi 6 using the DSPACK component library. I am implementing a blocking strategy for the push source filter's FillBuffer() call. The push source ...
0
votes
2answers
42 views

Are user scoped application settings (created in the VS designer) thread safe?

I have created application settings in my visual studio project, containing both user scoped settings and application scoped settings. My application has several threads that may access the settings ...
0
votes
2answers
87 views

example code to show how java synchronized block works

I am learning java multi-threading, I found it's hard to understand how synchronized block works: synchronized(Object o){ // do something } please give some example code that can show ...
0
votes
1answer
36 views

Choosing right object for locking in thread synchronization?

Generally code samples use locks this way: static readonly object lockForWorkingWithSharedObject = new object(); lock(lockForWorkingWithSharedObject) { // do something with shared object } This ...