Tagged Questions
22
votes
3answers
2k views
Is parallel programming == multithread programming?
Is parallel programming == multithread programming?
13
votes
3answers
327 views
Java Framework for managing Tasks
my question is, whether there exists a framework in Java for managing and concurrently running Tasks that have logical dependencies.
My Task is as follows:
I have a lot of independent tasks (Let's ...
7
votes
13answers
696 views
How to explain the “deadlock” better?
I am struggling to explain "deadlock" in threads in easy words, so please help. What could be the best example of "deadlock" (say, in Java), and how it does happen in steps and how to prevent it? But ...
5
votes
6answers
189 views
Is synchronization needed while reading if no contention could occur
Consider code sniper below:
package sync;
public class LockQuestion {
private String mutable;
public synchronized void setMutable(String mutable) {
this.mutable = mutable;
}
...
5
votes
2answers
320 views
Multiple threads or process with threads
this is for an assignment so I'm not looking for code.
I have to simulate a game where each player has turns and needs to 'pay attention' to what's going on.
So far, i know I'll need two threads for ...
4
votes
2answers
195 views
Can starting multiple asyncronous read/write operations on the same Stream corrupt the data?
I'm using asynchronous I/O because it does not block the calling thread and does the threading stuff behind the scenes. If I invoke multiple async operations like BeginWrite()'s on the same Stream, ...
3
votes
5answers
107 views
How to create a Lockfree collection of collection
I need to create a collection of collections. The collection is called by multiple threads to add items and lookup items. Once added the items will not be removed. Currently, while adding elements I ...
3
votes
3answers
492 views
Java: nice way to stop threaded TCP server?
I have the following structure for TCP client-server communication:
On server startup server starts
acceptor thread, that accepts client
connections and passes ServerSocket
to it.
When a client ...
3
votes
4answers
935 views
Multi-threaded application interaction with logger thread
Here I am again with questions about multi-threading and an exercise of my Concurrent Programming class.
I have a multi-threaded server - implemented using .NET Asynchronous Programming Model - with ...
2
votes
3answers
256 views
Compare java and scala in MultiThread aspect [closed]
I just hear and see people saying scala is designed for MultiThread though it's actually for general purpose.
And it claims "The thing is that while you can make classes thread-safe in Java (if you ...
2
votes
6answers
370 views
What is the difference between multicore and concurrent programming
Can anyone help me out I am working on a presentation and would like to include a bit about - 'The difference between multicore and concurrent programming', I have googled a bit but not turning up ...
1
vote
0answers
58 views
Concurrent programming java [migrated]
I am creating a simple server that accepts a int and returns twice the value received.
Here is my code:
public class MyServer{
private static int port = 1234;
public static void ...
1
vote
1answer
153 views
How to solve the producer-consumer using semaphores?
I need to code a problem similar to producer-consumer, that must use semaphores. I tried a couple of solutions and none of them worked. First I tried a solution on Wikipedia and it didn't worked. My ...
1
vote
4answers
163 views
How to implement a Binary Semaphore Class in Java?
I can see how a "standard" Semaphore Class can be implemented in Java. However, I cant see how to implement a Binary Semaphore Class in Java. How does such implementation work? When should I call the ...
1
vote
3answers
211 views
WaitForMultipleObjects failing c++
I am currently writing a program that will run mulitple programs in groups all at once and others on their own.
if( WAIT_FAILED == WaitForMultipleObjects(numberOfProgramsRan, ...
1
vote
1answer
119 views
Consensus Value
while reading on concurrent programming, I came across the term Consensus Number in Compare-And-Swap & Compare-And-Set operations. I'm having trouble in understanding what is meant by this term, ...
0
votes
4answers
53 views
java reuse an executor
I work on a simulation system, where at each timestep, I have to simulate many models. I used a FixedThreadPool to speed up the calculation:
ExecutorService executor = ...
0
votes
1answer
339 views
How to code the dining Philosophers in Java using semaphores?
I have to code a solution to the dining philosophers problem in Java using semaphores. The semaphore is done "by hand" creating a semaphore class. And looks like this:
package principal;
public class ...
0
votes
3answers
73 views
Multithreading useful upto what extent?
I have a task which can I divide into multiple independent subtasks and Each subtask can be run in a separate thread in Java.
I want to understand what is the optimal number of threads after which ...
0
votes
0answers
117 views
loop not iterating in concurrent app
I've an app that places a fisheye effect on a bitmap. The image processing class runs concurrently. It distorts a bitmap then stores the pixels in an array from which the distorted bitmap is made.
...
0
votes
4answers
233 views
Get all threads that run with a specified Runnable
I have one Runnable that is used by more than one thread:
Runnable myRunnable = new MyWorker();
Thread one = new Thread(myRunnable);
Thread two = new Thread(myRunnable);
one.start();
two.start();
...
0
votes
2answers
333 views
Refactoring Dictionary to ConcurrentDictionary
I want to make my code multithreadable, therefor i need to change a Dictionary into a ConcurrentDictionary. I read about the ConcurrentDictionary, checked some example, but still I need a hand on ...