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)

1
vote
0answers
12 views

When do you need to pass arguments to `Thread.new`?

Local variables defined outside of a thread seem to be visible from inside so that the following two uses of Thread.new seem to be the same: a = :foo Thread.new{puts a} # => :foo Thread.new(a){|a| ...
0
votes
1answer
15 views

javafx thread to update a listview

I'm trying to do a simple chat application on javafx my actual problem is the thread to insert updates into a observablelist and set it on a listview the code im using : String ...
1
vote
1answer
14 views

Tkinter: How to use threads to preventing main event loop from “freezing”

I have a small GUI test with a "Start" button and a Progress bar. The desired behavior is: Click Start Progressbar oscillates for 5 seconds Progressbar stops The observed behavior is the "Start" ...
0
votes
0answers
20 views

QThread::finished() not emitted or QWidget::close() not invoked

The original problem is described here. I understood the offered solution and I think it should work. But not everything has gone well. I have problem that QThread::finished is not always emitted or ...
0
votes
1answer
30 views

Notify a thread that is reading from a socket

I have a thread that reads something from a socket and then create a thread that computes something. The problem is that the read function is blocant(I can't use non-blocking read). How can a read the ...
0
votes
0answers
7 views

Change Apache Prefork to Worker Not Working

I have installed Apache on CentOS with PHP running via mod_fcgid. This is working fine except Apache is still running as Prefork MPM and not Worker MPM so I can't take advantage of multithreading. I ...
2
votes
3answers
8k views

runnable interface example

public class CreateThreadRunnableExample implements Runnable { public void run() { for (int i = 0; i < 5; i++) { System.out.println("Child Thread : " + i); ...
1
vote
1answer
42 views

Perl: Forking and Populating Parent Array

Disclaimer: With today's hardware being what it is, I haven't had to fork in a while and so I may need some advice on the following code. The following is also a simple example, not actual code. my ...
2
votes
1answer
82 views

Could pinging several IPs make my network busy?

I developed an application that pings 60 IPs, but if I run it at home most of replies are 'request timed out', whereas if I do the same thing at work, 3 out of 4 replies are ok. I thought it was due ...
2
votes
2answers
61 views

Atomic wait-then-take operation on number

I have the following class: public class AtomicLong { private long initial; private long value; public AtomicLong(long value = 0) { this.initial = value; this.value = ...
0
votes
1answer
52 views

Python increment value in function call

So I've been exploring threading, and I was wondering if there's a analog to ++ in python like c. Essentially, I want to call a thread and as the thread is called, increment a value. So an analogue of ...
0
votes
2answers
43 views

How to get reference to original data in case of exceptions?

I'm running some Callable threads using ExecutorService. The threads are initialized with data before submitting to ExecutorService. When handling exceptions thrown by Future.get(), I'd like to log a ...
13
votes
4answers
10k views

Creating threads - Task.Factory.StartNew vs new Thread()

I am just learning about the new Threading and Parallel libraries in .Net 4 In the past I would create a new Thread like so (as an example): DataInThread = new Thread(new ...
0
votes
1answer
34 views

Append data in pandas

I can't figure out how to add data to a column in a panda data frame. I have four sensors that are sampling in four threads. I would like each sensor to append the current value to a specific column ...
4
votes
1answer
43 views

NullPointerException when accessing lazy loaded collection within DAO method

I'm having a strange issue with Spring and Hibernate when running multiple threads in an application. I'm using spring 3.2.0.RELEASE and hibernate 4.1.12.Final. The issue is that for some objects, ...
1
vote
2answers
39 views

Threading Mechanism for the following Scenario

I am new to multithreading programming. Is it possible to have the following situation? If one thread is writing on a object, no other threads can read or write on it. If on one is writing on it, ...
-1
votes
1answer
43 views

Python Catching Popen Output

I'm experiencing some strange behavior with my Python script exiting without any error messages. Based on my debugging it is happening around a popen() call to scp a file to a server. The code was (I ...
1
vote
1answer
12 views

python 3.2 global variable not updating when its in a thread

I'm making a program and I got into a problem. I have a thread running which has a while loop that checks if a global variable is equal to False, if its equal to True then exit the while loop. The ...
0
votes
0answers
11 views

Tomcat multiple requests same user, same url (is that caching? thread keep-alive?)

I am working with a new server which I have total control of my Tomcat 7 configurations. I've optimized my memory usage, permgem space and bzip compression which really is making the difference... ...
3
votes
2answers
18 views

Putting Scheduled Tasks on Hold with ScheduledThreadPoolExecutor

Can ScheduledThreadPoolExecutor put scheduled tasks on hold that have not yet started? I don't want to cancel them, but just put them on hold if some situation arises and then resume them once the ...
0
votes
0answers
8 views

How to make ATLAS to be Avaliable for Octave?

I have been using octave for some Machine Learning algorithms, but when using Neural Networks, it uses the 100% of 1 core, I would like it to use all my 4 cores, I read this could be done with atlas, ...
0
votes
0answers
56 views
+50

Android thread wait until visible

I've made a custom pie chart view that I want to animate starting when the pie chart is visible. Currently what I have is the pie chart animating but by the time you can actually see it on the screen ...
1
vote
0answers
6 views

How do you run two instances of firefox using threads in java webdriver

I am a basic java user and currently I am trying to create an automated test case that tests my email functions. So what I have in mind is: Using selenium webdriver in java the program creates a ...
0
votes
1answer
27 views

python threading.Timer start immediately not at specified time

i want to execute a function in every 3 second the code works if i call a function without arguments like below: def mytempfunc(): print "this is timer!" threading.Timer(5, ...
2
votes
4answers
47 views

What is the best networking solution for a complex multithreaded app?

I have a streaming iOS app that captures video to Wowza servers. It's a beast, and it's really finicky. I'm grabbing configuration settings from a php script that shoots out JSON. Now that I've ...
0
votes
2answers
47 views

What's the “right” way to delay a method running in C# for a set amount of time after an event while still letting the original thread run?

I have a project in C# (using WPF) which involves a user placing 2d markers on a canvas to generate 3d geometry. When the 2d arrangement changes there's a fair amount of math that happens, and then a ...
0
votes
1answer
25 views

qt signal-slot multithreading deadlocks

In my code a worker thread emits a signal to gui thread. Signal and Slot are connected via Qt::BlockingQueuedConnection. When during thecloseEvent application is trying to stop the worker thread and ...
0
votes
0answers
17 views

OpenMP merge local thread arrays after thread ends

Ok, so im working on a project that takes about 30 minutes to run, so im trying to speed it up. essentially, it reads in binary data, decodes it, then outputs it in a csv file. currently it is single ...
3
votes
2answers
89 views

One Thread slower than another even they do the same thing

I am just learning about multithreading by trying to create some little programs, and I found one specific thing I am not sure why it is the way it is. I've two classes, they both count to 2 billion, ...
8
votes
3answers
11k views

Android - Loading, please wait

Is there a standard "Loading, please wait" dialog I can use in Android development, when I invoke some AsyncTask (downloading some data from remote service for example)?
1
vote
1answer
28 views

How to notify worker thread that UI is modified using Handler.Post()?

I have a worker thread and occasionally i send updates to the UI Thread using Handler.Post(). In some cases i need worker thread to wait until Handler.Post() executed on UI Thread and the view is ...
1
vote
1answer
13 views

How would you implement a save thread cooperation with signals in ruby 2.0?

I just began to work with threads. I know the theory and understand the main aspects of it, but I've got only a little practice on this topic. I am looking for a good solution (or pattern, if ...
0
votes
1answer
42 views

How to compare AtomicBoolean with boolean value in java

I'm trying to deploy TTAS in a multi-threading application in java, using this code: AtomicBoolean state= new AtomicBoolean(false); void lock(){ while(true) { while(state.get()) { ...
3
votes
3answers
2k views

C++11 thread_local in gcc - alternatives

As I can see at: http://gcc.gnu.org/projects/cxx0x.html thread_local keyword is unfortunately unsupported in gcc yet. Are there any alternatives for that? I don't want to use boost library.
0
votes
1answer
20 views

Thread doesn't wake up after join

I've got a GUI interface which has a start and a cancel button. After starting, the main thread which is the GUI thread, is creating a second thread which will do the actual work. When pressing the ...
0
votes
2answers
26 views

WPF starting up interfaces without freezing the GUI

I know there is a bunch of threads about initializing stuff in a different thread so you dont need to freeze your UI. But in my case this initialization involves creating a lot of plots (polylines in ...
1
vote
3answers
4k views

How to start an activity from a thread class in android?

I am extending a thread class and from that class I want to start an activity. How to do this?
12
votes
6answers
4k views

How to allocate thread local storage?

I have a variable in my function that is static, but I would like it to be static on a per thread basis. How can I allocate the memory for my C++ class such that each thread has its own copy of the ...
-2
votes
1answer
71 views

Thread inside a System.Timers.Timer method

I have the following scenarios using System.Timers.Timer. Create a Timer object and assign the method _JobListener.Enabled = false; _JobListener.Elapsed += (this.JobListener_Elapsed); Within ...
1
vote
1answer
28 views

Current thread not owner exception

in my application i am using a code that run a batch file, on executing it i am getting a exception i.e. current thread is not owner. Here i want to mention that my application is based on eclipse ...
0
votes
2answers
26 views

Tracking down modifications to adapter data not on UI thread

I have just inherited a very large code base of probably around 100 activities. It seems the past developers didn't understand how to only update adapter data on the UI thread and remember to notify ...
1
vote
2answers
20 views

JUnit test not executing all threads created within the test

I wrote a simple example for threading which generates tables for numbers starting from 1 to 20. when I tested it with main method it executes all the threads (prints all the messages), while all ...
1
vote
1answer
37 views

Locking by name (mutex alternatives)

For locking by name is any alternative to using named Mutex? The locking is for Web application to prevent performing an operation many times in parallel on resource with same name so I need to lock ...
1
vote
1answer
26 views

UIGraphicsImageContext leaks when backgrounded

Supposedly the UIKit calls are thread safe as of iOS 4, but when I try to render a PDF page in a background thread and pulling out an image from the view, I get a ton of leaks. As soon as I put it in ...
0
votes
2answers
1k views

How to Stop Current Playing Song When using one thread with JLayer?

I recently used a solution to the one-thread-at-a-time problem whe using Jlayer to play mp3 songs in Java. But this solution by Kaleb Brasee didn't hint at how you could stop the player, i.e how could ...
7
votes
8answers
3k views

How to let Timer skip tick if the previous thread is still busy

I created a windows service, that is supposed to check a certain table in the db for new rows every 60 seconds. For every new row that was added, I need to do some heavy processing on the server that ...
0
votes
2answers
51 views

How to update the UI in background thread without using mainthread

I am doing one application in which i got one HTML string in background thread. I want to load the webview using that HTML string in background. If I load that web view on background, the app ...
13
votes
1answer
162 views

Static local variable initialisation in multithreaded environment

Suppose there is a function (member function possibly) SomeType foo() { static SomeType var = generateVar(); return var; } How var will be initialised if foo will be called 'for first time' ...
2
votes
4answers
60 views

Using 'this' versus another object as lock in synchronized block with wait and notify

I have two blocks of code, one waits for the other to notify it. synchronized(this) { wait(); } and while(condition) { //do stuff synchronized(this) { notify(); } } ...
3
votes
6answers
104 views

Multithreading efficiency in C++

I am trying to learn threading in C++, and just had a few questions about it (more specifically <thread>. Let's say the machine this code will run on has 4 cores, should I split up an operation ...

1 2 3 4 5 752