8
votes
4answers
113 views

Is volatile read happens-before volatile write?

I try to understand why this example is a correctly synchronized program: a - volatile Thread1: x=a Thread2: a=5 Because there are conflicting accesses (there is a write to and read of a) so in ...
2
votes
1answer
92 views

Aquire Singleton class Instance Multithread

To get the instance of the class with Singleton pattern, I want use the following function: This is a sketch interface uses SyncObjs; type TMCriticalSection = class(TCriticalSection) private ...
3
votes
3answers
103 views

Threads Multithreading

The question is as follows: Three threads are started simultaneously as follows: t1.start(); t2.start(); t3.start(); The output of the first thread(t1) should be the input to the second thread(t2) ...
3
votes
2answers
29 views

Several threads writing the same data on a buffer: are there consistent arguments stating that it is dangerous?

Imagine a situation in which several threads can write on a certain buffer (no restrictions on its size) and all of these constraints apply: Before all the threads start, the buffer is initialized ...
0
votes
1answer
28 views

How to start and stop a process in a java program while waiting other method start and stops every 3 seconds

hello i have a method that i want to call every 3 seconds to doing some calculations and after that the result will going on to a new method and doing its work while the first method it stops ...
0
votes
2answers
53 views

Java sharing an object between threads

I have a database object which stores objects in various data structures. Several threads access this database, but the database is not always up to date. If I change the name of the object in one ...
0
votes
1answer
30 views

Why they always use while(true) loop for the process in process synchronization chapter?

I am reading the textbook Operating Systems Concepts by Abraham Silberschatz et al. I found that whey almost use while(TRUE) loop for all the processes that need to be synchronized in the the chapter ...
1
vote
3answers
46 views

What is the preferred method of updating a reference to an immutable object?

In case we have an immutable object like an ImmutableList(). What is the preferred method for using this object in a multi threaded environment? Eg public class MutableListOfObjects() { private ...
-1
votes
1answer
27 views

source code manipulation(adding synchronized block) changes the variable scope

I'm writing a path profiling tools, and i use jdt Astparser to modify the source code If i want to add some codes after every original lines and let them to be atomic operations and don't change the ...
2
votes
5answers
54 views

Why is this not synchronized correctly?

Hi all I have this code: public class ThreadTester { public static void main(String args[]) { Counter c = new Counter(); for (int i = 0; i < 10; i++) { MyThread a = ...
2
votes
1answer
58 views

How to synchronize Thread

I have a singleton class that adds and removes clients (applets) to/from a linked list like so: public class ClientManager { //Collections.unmodifiableList private static ClientManager ...
0
votes
2answers
84 views

using semaphores for multithreading

Good Day! I need to solve synchronization problem using semaphores. I've read many tutorials and I now know that I should use a release method and am acquire method, however, i don't know where to ...
0
votes
1answer
77 views

Thread execution order in c#

I have a list of thread I want to ensure the execution order between them this is the code for (int k = 0; k < RadioList.Count; k++) { for (int i = 0; i ...
0
votes
1answer
43 views

Synchronizing on a passed object, JFrame is freezing

I created JFrame which contains and InternalFrame which draws figures which are moving(each figure is another Thread) I wanted to pauseButtonmake it pause, so I wanted to synchronize them on the ...
1
vote
1answer
33 views

Optimization: Painting synchronization

I'm having some heavy optimization issues with painting. A sample of my code looks like this: BufferedImage img1; synchronized(game.players){ synchronized(game.monsters){ ...
0
votes
3answers
66 views

Java - How To Synchronize 2 Threads On 1 List?

How can I synchronize 2 threads to handle data in a list ? thread A is adding / changing items in a list (writing to the list) thread B is displaying the items (only reading the list) I would like ...
0
votes
1answer
42 views

How to stop a thread in a web server

I have a Java socket.io server, based on netty implementation (of com.corundumstudio.socketio). The server handles requests using some closed-source code, and sometimes, a request may get stuck ...
0
votes
1answer
39 views

Reading data from running thread

I know java thread related questions have been asked many times, but I have not been able to piece together an answer to my question. I am still new to thread programming, so excuse my ignorance. I ...
0
votes
1answer
74 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 ...
1
vote
1answer
50 views

Running code on the main thread from a secondary thread?

This is a general Java question and not an Android one first off! I'd like to know how to run code on the main thread, from the context of a secondary thread. For example: new Thread(new Runnable() ...
1
vote
2answers
73 views

QT - drawing from multiple threads

I'm writing a program in QT, which runs 10 worker threads which calculate the trajectory of an object in space. They also have to draw the path of the object. I have a "Body" class deriving ...
0
votes
1answer
32 views

Synchronizing of shared object which is used by worker threads

My last question to this topic and the corresponding answer did not explain all details. So I decide to simplify the code: List<String> wis = new ArrayList<String>(); for(int ...
0
votes
1answer
50 views

Shared variables in Thread -> Need to synchronize them?

Following code to create tasks from a big list which is split into sub lists (List l): ExecutorService executor = Executors.newFixedThreadPool(cpu); KwArrayDuration duration = new ...
1
vote
2answers
59 views

Strange behavior with Java Synchronization (Lock, Condition)

I am just trying to model a simple readers / writers scenario. Here is the code: import java.util.concurrent.CountDownLatch; import java.util.concurrent.Executor; import ...
0
votes
2answers
73 views

Is there really a race condition in this multi-threaded java code?

I saw a snippet of code in this question which I could not understand (most probably due to the fact am a beginner in this area). The question talks about "an obvious race condition where sometimes ...
0
votes
1answer
62 views

Blocking queue in Java

I am reading a book titled "Beginning Algorithms", that has examples in Java. In the chapter about queues, it explains the "blocking queue", and ... even when my background is C# and not Java, ...
0
votes
3answers
58 views

Java Thread accessing another Thread

I have two Objects that implement the Runnable interface. Lets say i have Thread_1 and Thread_2 objects. Thread_1 has global variable myVariable; and method myMethod() which uses the myVariable ...
0
votes
1answer
75 views

Java synchronization?

I've never really dealt with any synchronization and threading, so I'm having big trouble with the following: I have ClassA with a constructor: int x; public ClassA(){ method1(); new ...
0
votes
2answers
42 views

Synchronizing ArrayList of BlockingQueues

In Java, I need an object which is an ArrayList of 60 LinkedBlockingQueues. The ArrayList will .add() 60 LinkedBlockingQueues in the beginning of the program, while still single threaded. Then one ...
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
1answer
57 views

C# winfroms app thread synchronization

I am very much a beginner in programming and I am wondering about synchronizing threads. I have a winforms program that needs to creates threads for each cpu core and run a method a specified amount ...
4
votes
2answers
153 views

C++: Thread synchronization scenario on Linux Platform

I am implementing multithreaded C++ program for Linux platform where I need a functionality similar to WaitForMultipleObjects(). While searching for the solution I observed that there are articles ...
1
vote
0answers
41 views

Synchronization context in asynchronous WCF per call service

I have a WCF service, for example: public interface IService { [OperationContract(AsyncPattern = true)] IAsyncResult BeginGet(Request productsRequest, AsyncCallback callback, object state); ...
0
votes
0answers
32 views

Cudalaunch and MemcpyAsync synchronisation in multithreaded application

I am currently trying to add cuda code in a multithreaded application which performs two types of treatments, one on a large dataset (2.6MB) and a second on a short dataset (330KB). There is ...
0
votes
2answers
68 views

High CPU within Object.wait()

I have a typical conditional variable implemented in Java's fundamental synchronized/wait: ConcurrentHashMap incompleted = ...; // the notifier incompleted.remove(key); synchronized (this) { if ...
2
votes
5answers
104 views

How to synch JavaScript callbacks?

I've been developing in JavaScript for quite some time but net yet a cowboy developer, as one of the many things that always haunts me is synching JavaScript's callbacks. I will describe a generic ...
0
votes
1answer
41 views

How does Monitor Synchronisation work?

So I'm reading about synchronisation and have come across Monitors, but can't seem to grasp how they work. I see the general layout is something in the format of the following with what I can see as ...
1
vote
2answers
74 views

C# Best practice of thread-saftey when working with collections (that aren't Concurrent already)

My question is more like something I want to confirm with other people so I'm sure I got the right answer. When you want to make a non thread-safe operation such as enumerating over a collection, the ...
1
vote
2answers
74 views

Use “regular” variable to synchronize threads

If I have only two threads, and I want one of them to wait for the other to reach a certain point, is it safe to do the following: bool wait = true; //Thread 1: while(wait) ; wait = true; //re-arm ...
2
votes
1answer
123 views

Condition variable deadlock

I have a problem with a deadlock in my code related to the use of condition variables. This is more of a design question than a pure code question. I have no problem actually writing code once I ...
1
vote
4answers
106 views

Thread Synchronization at C

I have to use two threads; one to do various operations on matrices, and the other to monitor virtual memory at various points in the matrix operation process. This method is required to use a global ...
1
vote
3answers
100 views

Room synchronization : How to ensure multiple threads are using same node?

(Problem link to wiki : http://en.wikipedia.org/wiki/Room_synchronization) Suppose there are N resources of type NODE, represented by an array NODE nodearray[N]; Lets say there are M threads ...
5
votes
2answers
59 views

How to manage number of threads inside Sync Task

What i am looking for is to find a way to manage a number of threads inside the Asyntask. I need to sync my local database with server updates. This might be large data that can be retrieved using ...
-4
votes
1answer
64 views

What is more efficient - synchronization on a method or a block [duplicate]

Can someone please tell me whether its more efficient to synchronize on a method or a block in Java? Just thinking about this, when you synchronize on something it affects the performance so I would ...
0
votes
5answers
118 views

Java - Two threads communicating via wait()/notify() but threads are alternating on with thread gets lock first

The desired output of this programme is: Ping Pong Ping Pong Ping Pong Yet it alternates between that and Pong Ping etc. The thing is, I create the Ping thread and run it first. So I am not sure ...
1
vote
1answer
59 views

Synchronization of Threads in Java

You have a storage object O. Assume you have n reader methods and one writer method in a thread. If the writer method is called by a thread, none of the reader methods should be able to access O, but ...
0
votes
1answer
45 views

Efficient use of a fifo for an audio streaming application

I have an audio dsp application which produces output at a significantly faster rate than real-time, using a pool of threads. This is intended for use in games, and the audio must be streamed with a ...
0
votes
2answers
70 views

Synchronize and maintain operation order in java multi-threaded web service

My java web service has a number of methods offered, each starting a different thread when called (operations include mysql database calls). I want to make sure the operations are executed in the same ...
1
vote
1answer
71 views

How are threads implemented in Windows 7?

Microsoft introduced that Window 7 has improved threading subsystem introducing Hybrid (N:M user-space / kernel space threads mapping). Does somebody know the specifics of threading implementation. ...
3
votes
5answers
125 views

C# One Writer Many Readers read exactly one time

I have 4 threads. One is reading some information from the network write it in variable and should signal after each piece. 3 of them are reading this variable and should read it exactly one time. ...

1 2 3 4 5 18