The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
18 views

How to send a packet from Server to Client (from a function) Ejabbered

I am looking for a function. A global function that might do me the work of sending the stream packet to the client. in function A (Server, From, attrs)-> I construct the xml element PacketToBeSent ...
-1
votes
0answers
51 views

Thread safety critique requested for a Bounded Buffer C++11 implementation [closed]

I am trying to create a concurrent Bounded Buffer based loosely off of an article I read here. I wish to use this design as IPC communication channel between 2 threads (this is why you will see ...
1
vote
1answer
61 views

Java synchronized vs deadlock example

I am not familiar with threads and concurrent programming. I was looking for a simple snippet which would result in a deadlock, here it is : public class TestLock { private static class fun { ...
0
votes
1answer
64 views

Why is my heavy python script pausing on windows? Can it be prevented?

There is a python script I built called convert.py, which is a file converter (SQLite3 -> SQLite3). It takes about 30 minutes to finish, working on with heavy CPU and I/O. I opened 30 CMD.EXE windows ...
1
vote
1answer
75 views

Concurrent Processing of csv for multiple users

I have a scenario in which I have to process CSV files from a folder for users and store them into database after processing. We have 5 type of feeds per user. Any user can send any feed in that ...
0
votes
0answers
101 views

Building independent processes with staging area

Before I start describing my architecture I'd like to say that I feel overwhelmed by this topic so I would appreciate any extra details you throw in your reply. ok so I've watched Rob Pike's talk at ...
0
votes
1answer
62 views

How to close the clipboard ressource in C#?

Below is the code how I put a text string into the Windows Clipboard. I am looking for a command to close the clipboard resource immediately after so that it is not locked anymore by the app. Do you ...
4
votes
1answer
153 views

When to use the disruptor pattern and when local storage with work stealing?

Is the following correct? The disruptor pattern has better parallel performance and scalability if each entry has to be processed in multiple ways (io operations or annotations), since that can be ...
0
votes
1answer
57 views

How do visibility problems occur in Java concurrency? [duplicate]

I am reading the book: "Java Concurrency in Practice" to better understand how java concurrency works. On chapter 3 section 3.1:Visibility There is and example in which the book tries to show how ...
0
votes
1answer
107 views

Mutual Exclusion(Peterson's Algorithm)

I am looking at Peterson's Algorithm(mutual exclusion for 2 processes) My question is what if no processes has entered a critical section yet and P0 wants to enter a critical section for the first ...
0
votes
0answers
27 views

Synchronicity and Asynchronicity with QtConcurrent

I have a design issue that I'm sort of stuck on. I have a class called ActionBase which is an interface that provides a synchronous and asynchronous way to call certain methods, where the methods ...
3
votes
1answer
81 views

Can I implement park/unpark methods in pure Java?

I know LockSupport is part of the JDK, but I am wondering if the implementation below is semantically correct. Observe that Object.wait can deal with the problem of thread's interrupt. My question is ...
0
votes
1answer
90 views

Monitor status of Object pool workers

I have created this thread from inside another class for reading status of executors on finish and cancel rest of tasks on failure. Tasks are Runnable If there is any failure seen, overall status ...
0
votes
1answer
69 views

How does Hazelcast MapLoader handle concurrent requests for the same key

Assume that I've implemented storage & loading interfaces and concurrent requests arrived for a key that is not present in the map. Does Hazelcast ensure that the loader will be called only once ...
0
votes
0answers
57 views

FSP concurrent programming issue - how to perform calculation without exceeding maximum number of Transitions in LTSA tool?

im having a slight problem here. I am using a LTSA tool for FSP language . The issue with that tool is that you can not exceed a maximum number of 62 ( i believe ) transition otherwise it will not ...
0
votes
0answers
42 views

Generating Reports From Concurrent Classes in JUnit

Ok so I managed how to run my TestClasses in Parallel at the same time whilst running different Web Browsers, but now I need to generate the reports for each TC rather than the whole suite I based my ...
1
vote
1answer
66 views

C# BlockingCollection<T> Class statistics

I am using an unbounded blocking collection using the ConcurrentQueue as the underlying collection as one of the main components of my program. I am looking at a good way to collect statistics about ...
5
votes
2answers
140 views

Let nvidia K20c use old stream management way?

From K20 different streams becomes fully concurrent(used to be concurrent on the edge). However My program need the old way. Or I need to do a lot of synchronization to solve the dependency problem. ...
0
votes
1answer
90 views

Implementing threads over an existing code

I am not a thorough JAVA professional but have experience in Programming, none with threads though. I have an application code which currently does the following. Make connection with a DB Pull ...
0
votes
0answers
17 views

Busy Form of Waiting - Avoiding it in a kill/signal situation

I have a project to submit for OS class in which requirements are two or more concurrent processes which exchange signals. I did this in Python: c = os.fork() # PARENT if c: ...
0
votes
2answers
54 views

Ordering of tasks in TPL

If I have the following code using System; using System.Threading; using System.Threading.Tasks; namespace ConsoleApplication3 { class Program { static Task<int> ...
0
votes
1answer
40 views

Signaling a thread to terminate whenever it reached a stable situation

Suppose I have two threads A and B, both running. Suddenly B decides to terminate A, and thus A should terminate ASAP. I don't want A to terminate instantly, but when it has reached a stable state. A ...
3
votes
2answers
216 views

Java multi-thread programming - atomic operation

I am on my way learning multi-thread programming with Java. Here is a confusion I got. class Cache<K, V> { private ConcurrentMap<K, V> cache; private ConcurrentLinkedQueue<K> lru; ...
0
votes
1answer
83 views

How to make my algorithm in to process in parallel using Java CountDownLatch?

I am playing around with Java lacthes and wrote a piece of code to calculate some stuff in a parallel manner. The data, basically consists of a Map that each map has a list of numbers as value. My ...
1
vote
3answers
226 views

ConcurrentHashMap returns a weakly consistent iterator, why should we use it anyhow?

I am reading the book Java Concurrecny in practice. On page 85 section 5.2.1 it talks about the ConcurrentHashMap and its advantages. However, in one part, the books claims that the iterators ...
0
votes
1answer
181 views

Asynchronous I/O callback method concurrency

I've implemented Asynchronous I/O with a callback where I'm worried about concurrency. I contest to you that since I'm always working with the same file and the OS file physical I/O is fundamentally a ...
3
votes
3answers
113 views

Do I need to synchronize primitives in C++

I have a volatile bool 'play' flag in my class that is being set by one thread and being read by another thread. Do I need to synchronize the calls to that flag? for example in this function: void ...
1
vote
2answers
191 views

Avoid reassignment in functional programming - Bad example?

In a lot of web articles, functional programming is presented as avoiding all kinds of variables reassignment and so promoting only "final" variables at least for especially just better reading. Most ...
4
votes
1answer
87 views

Why there is no way to check if current thread holds the read lock of ReentrantReadWriteLock?

I found that the write lock of the ReentrantReadWriteLock provides an isHeldByCurrentThread() method to check whether the invoking thread holds that lock. But there is no corresponding ...
0
votes
1answer
39 views

On signaling a condition variable, what happens to mutex ownership?

Thread T1 locks mutex M and waits on condition C (releasing M). Thread T2 locks mutex M and signals condition C. In literature it's stated that once C is signaled, T1 wakes up and reacquires M. I ...
2
votes
2answers
79 views

Consumer/Producer with order and constraint on consumed items

I have the following scenario I am writing a server that process files (jobs) a file has a "prefix" and a time the files should be processed according to time (older file first) but also take into ...
0
votes
1answer
147 views

Example of how functional programming is better than OO [closed]

I've heard/read lots of articles about how functional programming is better than OO because it avoids state, mutable data, side-effects, etc, which makes doing concurrent programming easier/more ...
0
votes
4answers
107 views

Snippet for concurrentHashMap to retrieve object or create it if absent (as atomic operation)

In Java, I want to do something like this: Object r = map.get(t); if (r == null) { r = create(); // creating r is an expensive operation. map.put(t, r); } Now that snippet ...
1
vote
1answer
245 views

Parallel foreach ConcurrentDictionary<string, string> add

I have entries like in a phone book: name + address. The source is on a web site, the count is over 1K records. Question is: How do i use/implement ConcurrentDictionary with ParallelForeach? I ...
0
votes
0answers
91 views

How to manage recalling an httpservice without using the parameters for the first call

I have the following situation whereby am calling a function on a certain event in this case button click and passing it an httpservice (normalService), what the function does is it checks to see if ...
1
vote
1answer
153 views

How to synchronize file creation in cache (not writing to a file, just creation)

I have a repository where old files are stored, like an archive. Users use a simple web application to fetch those files. I maintain a simple file system cache on the server where my web app is ...
2
votes
1answer
205 views

What is the light(est) weight GCC memory barrier in such case?

I have the following C code: ... data[index] = something; a_write_memory_barrier(); index = new_index; ... The code is not protected by a lock(others just read data and index), I want to make sure ...
1
vote
2answers
115 views

Is it safe to make a ConcurrentBag as notifiable?

I need to make a ConcurrentBag as notifable. I need to know that is it safe? Code for the class is public class NotifiableConcurrentBag<T> : ConcurrentBag<T>, INotifyCollectionChanged ...
0
votes
2answers
88 views

java multithreading issue [duplicate]

Possible Duplicate: Java String.equals versus == I am writing a program to simulate the hare and turtle race! I am using getName() to see which objects thread is executing and based on that ...
-1
votes
1answer
103 views

Concurrent Programming:Should I write a sequential program first, then add thread safety?

I'm working on a project where we have to create a number of threads(actual number will be inputted in by testers (TA's)). I'm having trouble not only with the programming but also with the design, I ...
0
votes
2answers
93 views

Java Synchronized Method and Block

I'm trying to understand synchronization of multiple threads in Java more fully. I understand the high level idea behind the use of the synchronized keyword, and how it provides mutual exclusion among ...
0
votes
1answer
55 views

Is it a pattern of concurrent programming?

Some OOP design appeared in my head. It's like a pool and a factory. The factory creates resources that can be shared between multiple threads. One resource entity is expensive and its creation takes ...
2
votes
1answer
102 views

unknown concurrent modification exception java using Iterator and Vector

i keep getting concurrent modification exception String[] permsList = Constants.CUST_MKT_PERMS_FIELDS; String hiddenFieldVector = new Vector<String>(permsList.length); ...
2
votes
4answers
457 views

What's the different between LinkedBlockingQueue and ConcurrentLinkedQueue?

I've read the blog, but i'm not sure whether his conclusion is correct : http://www.javacodegeeks.com/2010/09/java-best-practices-queue-battle-and.html#ixzz1seaiSLwp He said : As you can see from ...
0
votes
2answers
69 views

iOS Threading Violations Detection?

On iOS, I am wondering if there is anything akin to the NSZombies flag that can be set to detect/raise when a call is made to an API from a background thread when the main thread is required. With ...
0
votes
2answers
495 views

Which Node.js Concurrent Web Server is best on Heroku?

I have just learned about Heroku and was pretty much excited to test it out. Ive quickly assembled their demo's with Node.js Language and stumbled across a problem. When running the application ...
0
votes
1answer
108 views

Start/Suspend/Resume/Suspend … a method invoked by other class

I want to implement an Anytime k-NN classifier but I cannot find a way to call the "classify(...)" method for a specific amount of time, suspend it, get the available results before the method was ...
0
votes
1answer
323 views

Start/Suspend/Resume a method in Java [duplicate]

Possible Duplicate: Start/Suspend/Resume/Suspend … a method invoked by other class I want to implement an Anytime k-NN classifier but I cannot find a way to call the "classify(...)" ...
1
vote
4answers
320 views

calling a blocking method call with timeout in java

I want to call a method in java which blocks for some reason. I want to wait for the method for X minutes and then I want to stop that method. I have read one solution here on StackOverflow which ...
1
vote
1answer
107 views

Enumerating on ConcurentDictionary

If i use ConcurentDictionary dic in multithread accessed method can i be sure that in such construction: foreach (Subscription sub in subscriptions[ex].Values) { ...

1 2 3