Multithreading is how work performed by a computer can be divided into multiple concurrent streams of execution (generally referred to as threads).

learn more… | top users | synonyms (8)

0
votes
3answers
45 views

Thread safe and “Collection was mutated while being enumerated”

I have a class "Ad" where I set a static variable inside my Ad.m : static NSDictionary *citiesDict = nil; // class variable and in the same file I have implemented a class method that basically ...
1
vote
1answer
63 views

Communication between threads in Python (without using Global Variables)

Let's say if we have a main thread which launches two threads for test modules - " test_a" and " test_b". Both the test module threads maintain their state whether they are done performing test or if ...
0
votes
1answer
31 views

Android recuring task best option?

Good morning everyone, I am sending data to a device from android each 40ms. Up until now, I have been using a while(true) thread and thread.sleep because I didn't know better :). Now I see I have a ...
1
vote
1answer
58 views

boost::threadpool::pool vs.boost::thread_group

I'm trying to understand the different use cases. and the difference between the 2 thread uses. This is a great tutorial I have read which explains boost::thread_group. and here is a code I'm using: ...
0
votes
3answers
45 views

Stopwatch changing button text in c#

Basically, I've got multiple button in my Form, and I want for it show a Stopwatch in the button.Text when the button is pressed. (Button is modified to be a toggle button.) and to stop and reset the ...
0
votes
1answer
45 views

Summing an array using multithreading

I have an array with the size of n which is filled with the numbers 1..n. I need to sum this array using m threads by each time taking two elements, sum them up and inserting the sum back to the ...
1
vote
4answers
60 views

resolving threading conflicts in C#

lets suppose there is a static variable accessed by 2 threads. public static int val = 1; now suppose thread 1 execute's a statement like this if(val==1) { val +=1 } However after the check ...
-7
votes
2answers
72 views

Is CRITICAL SECTION required? [closed]

I got the code below from google search as I am trying to learn multithreading. I run the code with CRITICAL SECTION is used and without CRITICAL SECTION, but after executing that both situations, i ...
-7
votes
1answer
44 views

Reading a single file with Multiple Thread [closed]

I'm new to programming java threads. I need to read a single file with multiple thread to reduce the time of file reading operation in java. For example: file has 10 lines. 1st thread read 3 ...
0
votes
2answers
65 views

Learning python and threading. I think my code runs infinitely. Help me find bugs?

So I've started learning python now, and I absolutely am in love with it. I'm building a small scale facebook data scraper. Basically, it will use the Graph API and scrape the first names of the ...
2
votes
2answers
93 views

when to use Thread, interrupt and join

i am doing a sleeping barber prob. So, first i create 10 customer threads with 2 sec "sleep" between each other. now, the first client gets hair cut, means sleeping 5 sec.. we have waiting room for ...
0
votes
1answer
20 views

Thread in driver don't send packets

I have this NDIS Filter Driver. I try to start in my driver a thread, that will send packet every 10 seconds. To do that, I use this code: LARGE_INTEGER TimePrev, TimeNow; void ThreadedAction() { ...
1
vote
4answers
53 views

How does Java Synchronized compare locked objects?

I want to lock an object over multiple API requests such that only one request per user can enter a block of code. Does synchronized(obj) lock based on the object's reference or its hashCode() ...
0
votes
0answers
8 views

Is GenericObjectPool<T> from commons.apache.org thread safe?

Is GenericObjectPool from commons.apache.org thread safe ? I am most interested in the operations borrowObject() and returnObject(). Thank you in advance for the replies.
-1
votes
2answers
57 views

Using Multithreading for same Form instance?

I have a single-threaded C# tool in which there are a bunch of UI input controls. Based on these controls, and some input Excel files, some processing is being done. This processing takes 10~15 ...
-1
votes
3answers
61 views

Which class to use for this static method, StringBuffer or StringBuilder?

For the following code, which class should I use in a static method, StringBuilder or StringBuffer? Based on the API, StringBuffer is thread-safe, but StringBuilder is not. public static String ...
0
votes
0answers
14 views

Race On RCW Cleanup was detected - how to avoid such condition? SQL Server

I am experiencing an occasional exception in my multithreaded program. The exception is: RaceOnRCWCleanup was detected. "An attempt has been made to free an RCW that is in use. The RCW is in use ...
-5
votes
0answers
31 views

Main activity shuts down in my phone when i have a connection error [closed]

I have an app that i am writing, that is implements a timer every 30sec and after that it has thw main activity that is doing a job. the timer and the main are doing some connections with servers. ...
0
votes
1answer
22 views

Java - RunnableFuture and SortProcessor

I'm studying some code an here is a method, I 'm not quite sure about what it does: 1) There is a RunnableFuture, why is it assigned a FutureTask, why not FutureTask = new Futuretask? 2) What is ...
1
vote
1answer
46 views

Setting concurrent operation for NSOperationQueue causes only that number of operation

MyI have an NSOperationQueue with NSOperation objects in it NSOperationQueue *aQueue = [[ NSOperationQueue alloc ] init]; [aQueue setMaxConcurrentOperationCount:3]; for (int index=0; index<=5; ...
1
vote
1answer
44 views

Log4Net C# logging issue with multi-thread code execution

I am using Log4Net to log an exception in my .Net Windows service application. I want to mention that, my windows service application is running with multi-threading execution, which means that each ...
-4
votes
3answers
81 views

Problems with threads [closed]

I'm newer with Threads and I need to fix this error could you help me? Sorry was my fault this is what I have to do: This web application must execute 1000 games and show the output results. My ...
1
vote
1answer
59 views

Passing data from caller thread to the method in another boost::thread

I have rather a noob question regarding concurrency in C++ (Using Boost threads) on which I haven't found a clear answer.I have a worker class which runs in a separate thread.I init the worker on ...
0
votes
0answers
35 views

Understanding the program flow of python with tkinter

I am writing a programm to show my notes (like the short notes of windows 7) on the desktop. Therefore i created a main window with a menu from where you can create notes. If you click on "newNote", a ...
0
votes
1answer
49 views

Cross Thread after 20 seconds running

I receive data from a serial port and I show all the received data in the format they arrive in a multiline text box. This is my serial monitor "txtOutput". After I have validated the data as complete ...
0
votes
2answers
34 views

Asynchronously add views to fragment in Android

I trying to create a fragment which at the beginning will show a ProgressBar, other thread will call a function which will bring some information (the information brought from remote server - takes ...
-1
votes
0answers
23 views

c# Parallel multiple web page request

I'm creating an scrapper and I want to get the results like: Main URl list: 1. https://www.google.co.in/#output=search&sclient=psy-ab&q=c%23+tutorial&start=10 2. ...
-2
votes
0answers
44 views

BackGround thread is not working

I am using Windows application in C#. A background worker thread for background processing. I use a form and grid to show some data and on a button click I want to run background process, but in my ...
1
vote
2answers
34 views

why doesn't a simple python producer/consumer multi-threading program speed up by adding the number of workers?

The code below is almost identical to the python official Queue example at http://docs.python.org/2/library/queue.html from Queue import Queue from threading import Thread from time import time ...
0
votes
2answers
57 views

Run silent install in different thread - searching for solution without busy waiting

I'm building installer project which need to dowload many installation files from the internet (downlading operation executed in parallel) and than start installing the files one by one. The ...
0
votes
2answers
43 views

Pthreads and dynamic memory

My thread routine looks like this void * dowork(void * args) { char* ptr = new char[25]; memset(ptr, 0, sizeof(ptr)); // Do some operations with ptr // What if I call delete[] ptr } ...
1
vote
0answers
30 views

console logging inside a thread is not accurate

I'm using logback implementation and created an AsyncAppender so as to use logging inside a thread. The thread will be something like a monitor: it consumes a BlockingQueue of Objects added from ...
0
votes
3answers
49 views

Thread.Wait() exception, not knowing how to fix it

I have an frameAnimation, i only want it to start for like 3 second or so...therefore i added in a thread to wait for 3 second but then i meet an exception. im havent done any work with thread before ...
0
votes
1answer
49 views

How to determine when threads are in a deadlock from Main C#

I have read other posts about tools for deadlock detection and avoiding deadlock; but my question is specifically about how to find when threads are in deadlock from Main so that I can make the Main ...
2
votes
3answers
32 views

How do I schedule a print statement upon completion of 4 independent threads?

I have a simple java application which calculates prime numbers up to a certain user-given number and prints out the numbers. I've built upon this to include four separate threads which iterate ...
1
vote
0answers
24 views

How can I ensure that NSOperationQueue uses only one thread?

ABAddressBookRef can only be accessed by one thread. I think a good model would be having a thread for ABAddressBookRef in the background, besides the main thread. How can I ensure that there's only ...
-1
votes
1answer
30 views

My multi threaded server is not working

Hi i am trying to make a multi threaded server client app where the server resends an upper cased version of the string sent by the client, here are my three classes: The server class: package Q2; ...
0
votes
1answer
61 views

Can't get MFC worker thread to pass hWnd or MDI window pointer to thread

For some reason passing an hWnd or a pointer of a newly created MDI window cannot be recasted into its original value in the worker thread. I've tried creating the thread from the App class, ...
1
vote
1answer
68 views

How to use a thread to completion, then reuse the thread?

I'm building a form and I'm trying to use threading in order to get some results from a WMI query to display in a textbox without having the form freeze up on the user. However, when I use the code ...
2
votes
2answers
69 views

ZeroMQ multithreading: create sockets on-demand or use a sockets object pool?

I'm building a POC leveraging ZeroMQ N-to-N pub/sub model. From our app server, when a http request is serviced, if the thread pulls data from the database, it updates a local memcache instance with ...
0
votes
1answer
18 views

Run thread after app closes with Timer

I am making a test app which starts a Thread on a button click. I am finding location through GPS within the thread. But when I close the app, the thread gets destroyed. I want to start a thread that ...
0
votes
1answer
51 views

Displaying correct information in JPanel

I'm having trouble updating JPanels with new data. I'm working on a game, the basic concept of what I'm trying to do is load a player and display the items he holds in a JPanel (set out in a box ...
0
votes
0answers
33 views

UnsafeNativeMethods in my c# winforms call stack

I noticed the following in my call stack and wondered what things I need to be wary of. I am using a toolstrip item click event to fire the code. I find that VS2012 regularly locks up when I try to ...
0
votes
2answers
53 views

Thread nullpointerException QuickBlox “muc + chat”

Good evening I have a problem with the API QUICKBLOX, when I put "MUC" I jump rather strange error, and I don't know why. public class MyChatController { // ================= QuickBlox ===== Step 8 ...
5
votes
1answer
55 views

What is the point of Fibers in Ruby?

I don't understand how the below: counts = Hash.new(0) File.foreach("testfile") do |line| line.scan(/\w+/) do |word| word = word.downcase counts[word] += 1 end end ...
0
votes
0answers
21 views

Alternative to sharing hibernate session between threads

I am working with Spring 3.0.7 / Hibernate 3.5.0. I have some code that works with hibernate entity. It works ok. The problem occurs, when I try to make integration test for this code. Below is the ...
2
votes
2answers
78 views

TClientSocket and Threads

Okay guys, I'm using TClientSocket class and Threads to work simultaneously with a list of hosts. It's all good but I started note that after sometime, all threads get stucked into a ReceiveBuf ...
0
votes
2answers
51 views

Which is faster in perl, Parallel::ForkManager or threads? [closed]

Threads are considered as lightweight processes. Will they actually run faster than an equal number of forked processes?
0
votes
2answers
53 views

using threads unable to get the output as expected

I am writing a code in java to print the output as follows [spirit] [of] [wipro] but i am facing a problem in setting the priorities of the threads and seeing each threads priorty and not getting ...
0
votes
1answer
34 views

When is a valid opportunity to thread? vb.net

I've been looking into threading and the complications it could bring to your application. There are many instances in my application where the functions are a huge number of lines of code(500-1k+ ...

1 2 3 4 5 751