Tagged Questions
The concurrent-programming tag has no wiki summary.
22
votes
3answers
2k views
Is parallel programming == multithread programming?
Is parallel programming == multithread programming?
16
votes
9answers
2k views
Why Clojure instead of Java for concurrent programming
When Java is providing the capabilities for concurrent programming, what are the major advantages in using Clojure (instead of Java)?
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 ...
11
votes
6answers
8k views
.NET Asynchronous stream read/write
I have been trying to solve this "Concurrent Programming" exam exercise (in C#):
Knowing that Stream class contains int Read(byte[] buffer, int offset, int size) and void Write(byte[] buffer, int ...
9
votes
4answers
921 views
STL algorithms and concurrent programming
Can any of STL algorithms/container operations like std::fill, std::transform be executed in parallel if I enable OpenMP for my compiler? I am working with MSVC 2008 at the moment.
Or maybe there are ...
8
votes
3answers
963 views
What is this new Axum programming language?
I read this story on slashdot today where they announce a new parallel programming language by Microsoft.
What is this new programming language about? It says Parallel Programming. But is it going to ...
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 ...
6
votes
4answers
229 views
Behavior of ConcurrentModificationException
I am working on a piece of code with Iterator and getting a ConcurrentModificationException at the line a when I run the program from my IDE on windows--
LinkedList ll =new LinkedList();
. . .
...
6
votes
3answers
327 views
Multiprocessor programming: lock-free stacks
In preperation for my upcoming Concurrent Systems exam, I am trying to complete some questions from the text book "The Art of Multiprocessor Programming". One question is bugging me:
Exercise 129: ...
6
votes
3answers
292 views
Are these thread-safe?
I attended an interview today in which the interviewer asked me the following question :
Is re-entrancy and mutual exclusion thread-safe ? Can you explain why ?
I am relatively new to concurrent ...
6
votes
3answers
292 views
Java: reference escape
Read that the following code is an example of "unsafe construction" as it allows this reference to escape. I couldn't quite get how 'this' escapes. I am pretty new to the java world. Can any one help ...
5
votes
5answers
190 views
Thread safety of List<T> with One Writer, No Enumerators
While going through some database code looking for a bug unrelated to this question, I noticed that in some places List was being used inappropriately. Specifically:
There were many threads ...
5
votes
2answers
192 views
Pass multiple parameters to concurrent.futures.Executor.map?
The concurrent.futures.Executor.map takes a variable number of iterables from which the function given is called. How should I call it if I have a generator that produces tuples that are normally ...
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, ...
4
votes
1answer
362 views
Getting started with the stact framework
I have been looking through the Topshelf code, and notice that it is using an assembly called 'stact.dll'. There does not seem to be a lot of information around on this. It seems to be a library for ...
4
votes
5answers
498 views
Is there a Mutex in Java?
Is there a Mutex object in java or a way to create one?
I am asking because a Semaphore object initialized with 1 permit does not help me.
Think of this case:
try {
semaphore.acquire();
//do ...
4
votes
1answer
157 views
What are the tradeoffs when generating unique sequence numbers in a distributed and concurrent environment?
I am curious about the contraints and tradeoffs for generating unique sequence numbers in a distributed and concurrent environment.
Imagine this: I have a system where all it does is give back an ...
3
votes
5answers
91 views
C# - Sorting a ConcurrentDictionary by Value
I am able to sort my ConcurrentDictionary by value like so:
static ConcurrentDictionary<string, Proxy> Proxies =
new ConcurrentDictionary<string, Proxy>();
Proxies.OrderBy(p => ...
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
2answers
292 views
Stackless Python - Recursion in a for loop?
I'm fairly new to programming and I've been working with Python for a few months now. I'm trying to get a concept to work with Stackless, but just can't figure out how (though I've written other test ...
3
votes
1answer
112 views
Concurrent Processing - Petersons Algorithm
For those unfamiliar, the following is Peterson's algorithm used for process coordination:
int No_Of_Processes; // Number of processes
int turn; // Whose turn is it?
int interested[No_Of_Processes]; ...
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
255 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
3answers
682 views
Future investment: Erlang vs. Scala [closed]
since concurrent programming becomes constantly more important, I was wondering
what you think about Erlang vs. Scala in that respect. It seems to me that Scala
has a larger user base and potentially ...
2
votes
0answers
84 views
What software runs stock exchanges? [closed]
Stock exchanges need to support huge amounts of concurrency, coordinating buy/sell orders.
They also have very hot data sets, eg the lowest offer to sell a stock at a certain price is potentially ...
2
votes
1answer
86 views
Do methods call retain on arguments when they get called?
If I call a method in Objective-C with an argument and releasing the argument afterwords.
id argumentI = [Object new];
[ classA method1: argumentI ];
[ argumentI release ];
Then I know the ...
2
votes
6answers
369 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 ...
2
votes
2answers
655 views
How to use ExecutorService of java concurrent programming?
Iam using below code for uploading images on the remote server.When I use below it is uploading all images cocurrently on remote server.
List<Future<String>> futureList = new ...
2
votes
2answers
81 views
Performance analysis of a Multi-theaded Java application
What is the method generally used for doing the performance analysis of a multi-threaded Java application. I need to monitor the utilization of the processor cores.
2
votes
1answer
704 views
Java blocking issue: Why would JVM block threads in many different classes/methods?
Update: This looks like a memory issue. A 3.8 Gb Hprof file indicated that the JVM was dumping-its-heap when this "blocking" occurred. Our operations team saw that the site wasn't responding, took a ...
2
votes
2answers
782 views
How to use IObservable/IObserver with ConcurrentQueue or ConcurrentStack
I realized that when I am trying to process items in a concurrent queue using multiple threads while multiple threads can be putting items into it, the ideal solution would be to use the Reactive ...
2
votes
4answers
671 views
PHP Loop Performance Optimization
I am writing a PHP function that will need to loop over an array of pointers and for each item, pull in that data (be it from a MySQL database or flat file). Would anyone have any ideas of optimizing ...
2
votes
2answers
284 views
why doesn't this erlang code work?
fib(N)->
P1 = spawn(fun concFib:conFib/0),
P2 = spawn(fun concFib:conFib/0),
X=rpc(P1,N-2),Y=rpc(P2,N-1),X+Y.
conFib()->
receive
{Client,N} -> ...
2
votes
1answer
2k views
How to stop the execution of Executor ThreadPool in java?
I am working on the Executors in java to concurrently run more threads at a time.
I have a set of Runnable Objects and i assign it to the Exceutors.The Executor is working fine
and every thing is ...
1
vote
1answer
24 views
Possible algorithm for multithreading listing all keys in a large S3 bucket?
In S3 buckets containing large numbers of keys, listing keys through the REST api is a painfully slow process since
You can only list 1000 keys at a time.
The only way to determine the 5001th key ...
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
4answers
74 views
How to explain atomic actions?
Hi I am just trying to answer this question but not sure if my answer is correct, has anyone any better way of explaining an atomic action?
Question:
In a concurrent system it is necessary to ...
1
vote
2answers
65 views
What's the difference between parallel_for_each and parallel_for in MSVC's Concurrency Runtime?
parallel_for_each is of the form:
Concurrency::parallel_for_each(start_iterator, end_iterator, function_object);
but parallel_for is also of the similar form:
...
1
vote
1answer
57 views
Printing Issue with Concurrent Routines in Google's Go
I have three concurrent routines like this,
func Routine1() {
Print (value a, value b, value c)
Print (value a, value b, value c)
Print (value a, value b, value c)
}
func Routine2() {
Print (value ...
1
vote
3answers
152 views
Mutual Exclusion of Concurrent Go Routine's
In my code there are three concurrent routines. I try to give a brief overview of my code,
Routine 1 {
do something
*Send int to Routine 2
Send int to Routine 3
Print Something
Print Something*
do ...
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
6answers
126 views
Go Programming Language Mutual Concurrent Execution
I have two concurrent go routines like below,
Routine 1{
routine procedure
critical section{ ...
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
2answers
98 views
All goroutines are asleep - deadlock! ----— Error
I want to write three concurrent go routines that sends integers to each other. Now, my code is compiled properly, however after first execution it gives error "all goroutines are asleep - deadlock!". ...
1
vote
2answers
84 views
Concurrent routines in Google's Go Language
Is it possible in go:
Suppose, I have 3 concurrent routines which can send integers to each other. Now, suppose both concurrent routine 2 & 3 sends an integer to concurrent routine 1. Is it ...
1
vote
1answer
77 views
Concurrent routines in Go
I want to write three concurrent routines that sends integer to each other. Now, I have implemented two concurrent routines which sends integers to each other.
package main
import "rand"
func ...
1
vote
1answer
235 views
boost asio asynchronously waiting on a condition variable
Is it possible to perform an asynchronous wait (read : non-blocking) on a conditional variable in boost::asio ? if it isn't directly supported any hints on implementing it would be appreciated.
I ...