Tagged Questions

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 ...
7
votes
13answers
701 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; } ...
3
votes
5answers
95 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 => ...
2
votes
3answers
696 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
6answers
374 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
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.
1
vote
2answers
68 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
76 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
154 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
127 views

Go Programming Language Mutual Concurrent Execution

I have two concurrent go routines like below, Routine 1{ routine procedure critical section{ ...
1
vote
4answers
172 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
1answer
92 views

Manipulate Thread Implementation in JVM

Recently, I've been working on the deployment of concurrent objects onto multicore. In a sample, I use BlockingQueue.take() method whose specification mentions that it is blocking. It means that the ...
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, ...
1
vote
2answers
409 views

List of all of concurrent data structures added in .net 4?

Is there a comprehensive list of all new concurrent data structures added in .net 4? Or perhaps the list of namespaces like System.Collections.Concurrent?
0
votes
2answers
111 views

Issue with Mutual Execution of Concurrent Go Routines

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 ...
0
votes
1answer
32 views

How do I know if CAS instruction succeeded?

A typical compare-and-swap instruction does not report whether it succeeded. Instead, it just returns the old value regardless. How can I very quickly determine if the CAS successfully updated the ...
0
votes
1answer
342 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
0answers
34 views

Good introductory textbook for π-calculus

I'm looking for a good, introductory textbook for π-calculus. I've found a few tutorials on the web, and the Wikipedia article is informative (but a bit too dense). I'm looking for a good textbook ...
0
votes
0answers
88 views

Scala Actors problem

In our background processing there are about 14-15 scala Actors working simultaneously. All Actors are running on a single JVM within a single jar file. I have noticed that after continuous execution ...
0
votes
2answers
175 views

Java RMI: concurrency support

I am developing a multiplayer card game with a P2P architecture, it isn't a my decision, the project has been commissioned by the professor of Distributed System course at my University. Another ...
0
votes
2answers
338 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 ...
0
votes
1answer
349 views

Active Object Pattern in Concurrent Java 1.5+

I am trying to develop active object pattern in concurrent Java using java.util.concurrent classes. I describe it using a Client and a Server. A sample Server is as: class Server implements Runnable ...
-2
votes
0answers
37 views

What does this “distributed semaphore by broadcast” algorithm do? [closed]

It's called "distributed semaphore by broadcast" - I need to implement it in Java(a project that will need at least 4 classes). I'm lost on where to start.. I don't see what is going on with it. For ...