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
2answers
8 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
4answers
34 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
0answers
11 views

Parallel.ForEach - Not executing for all items

Not sure what is going on here. I have a list (loans), with the values 1, 3, 4, 6, 7, 9, 10, 12, 13, 14, 15, 17, 18, 22, 49 I run this, to process each item Parallel.ForEach(loans, new ...
-2
votes
0answers
62 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
votes
3answers
56 views

Call a function from thread

I am using the below code to call a method from thread function.It's not working.Please help me to do this. DataTable dt = get_data(Convert.ToInt32(Start_From), Convert.ToInt32(End_To)); foreach ...
1
vote
0answers
9 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 ...
12
votes
1answer
126 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' ...
0
votes
1answer
23 views

Close listening socket in python thread

I have a problem trying to learn about sockets for network communication. I have made a simple thread that listens for connections and creates processes for connecting clients, my problem though is ...
1
vote
0answers
36 views

Workflows works slowly

I have a problem with workflow. I use "State Machine Workflow" in project. Over time more and more workflow created, and application works slowly. After restart project application works normal, but ...
-6
votes
1answer
49 views

Multithreading concept with a example [closed]

I want to create a multi thread program to process some operation. I am new for this concept that's i totally confused where i start.Please help me to do this.If you can give me a simple multi thread ...
0
votes
1answer
68 views

How to watch my Thread variable from Main class?

I have that code: Main class: public class myTest { public static void main(String[] args) { try { Thread t1 = new myThreadClass("thread 1"); t1.start(); } catch ...
2
votes
2answers
50 views

Sleeping barber, semaphores?

I've been trying to solve this for two days now and I finally give up, I'm posting my code here with the hope that some fellow human can provide me with what I have been missing, because I think I am ...
0
votes
3answers
24 views

Overloading the Main thread

In one activity of my app I make a bunch of edit text fields dynamically and then set them with some text from sharedpreferences. I realise that this is a bit much for the main thread to handle which ...
0
votes
0answers
24 views

why doesnt perl thread kill doesnt work

i was playing with this code, from the way the beep is sounding, once the program starts it doesnt stop. I suspect the problem is with $thread->kill('KILL')->detach; it doesnt seem to be ...
0
votes
4answers
49 views

How to get attributes of running Java Thread?

I have that code: Main class: public class myTest { public static void main(String[] args) { try { Thread t1 = new Thread(new myThreadClass("thread 1"), "thread 1"); t1.start(); ...
0
votes
2answers
17 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 ...
0
votes
3answers
38 views

Threads and linq data context

This is my code: DatabaseDataContext context = new DatabaseDataContext(); var sourceList = (from q in context.Table1 where col1< 2000 select q).ToList(); foreach( Type x in sourceList) { var ...
0
votes
0answers
12 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
2answers
34 views

performance wise, what is better: AsyncTask or simply create a runnable?

I am currently working on an Android project which loads a lot of pictures onCreate. To make sure the UI doesn't get blocked I have the option to put it in a runnable or an AsyncTask. What is ...
1
vote
1answer
20 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 ...
3
votes
5answers
61 views

Atomic Operations and multithreading

Recently I was reading a tutorial, in that I came across a statement that says.. "The Java language specification guarantees that reading or writing a variable is an atomic operation(unless the ...
1
vote
1answer
95 views

program is not ending smoothly in multithreading

I am creating some threads in my program .Here i used join method so that main thread will wait for all my threads.But whenever i am running this program it is not getting completed all the info ...
1
vote
2answers
24 views

Java ME Can't restart thread

I have the following thread: public void start() { isRunning = true; if (mainThread == null) { mainThread = new Thread(this); ...
1
vote
0answers
30 views

How to pass io_service object to a new thread using boost::bind?

I have a class called overlay_server which has a public method void member_list_server(boost::asio::io_service &io_service){ Now I want to run this in a new thread. So I create a new thread, ...
1
vote
2answers
42 views

Threads problems on android. help please

I have a button. In the onclick event, want to run one progressDialog, and then, while is loading progressDialog, run an AsyncTask. My code: Method OnCreate protected void onCreate(Bundle ...
1
vote
1answer
37 views

How is consistency maintained for multiple copies of variables that is declared as a ThreadLocal?

As far as I understand ThreadLocal variables maintain a separate copy of the variable for each thread. This variable whose multiple copies are maintained is essentially a shared variable. So what does ...
2
votes
0answers
29 views

CPU high usage of the usleep on Cent OS 6.3

I compile the code below on cent os 5.3 and cent os 6.3: #include <pthread.h> #include <list> #include <unistd.h> #include <iostream> using namespace std; pthread_mutex_t ...
0
votes
1answer
29 views

qt blocking connection deadlock

In my code a worker thread emits a signal. From Qt Docs: Qt::BlockingQueuedConnection - Same as QueuedConnection, except the current thread blocks until the slot returns. This connection type ...
1
vote
3answers
57 views

Threading/Timing in Java, what's the best for consistent results? [closed]

Okay, so I am in the process of creating a platformer game, not necessarily designed for gravity manipulation or jumps, but I need to use some sort of timing mechanism. Up until this point when ...
3
votes
6answers
102 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 ...
0
votes
1answer
26 views

How to properly apply thread synchronization in CUDA app?

Generally I was using thread synchronization very occasionally in my applications because I didn't need this functionality very often. I'm not really advanced C/C++ programmer, however I'm not a ...
0
votes
1answer
13 views

Is there a version of ereporter for Python 2.7

I'm a big fan of the Google App Engine ereporter module. It sends you an email every day with all the errors you logged. I'm creating a new app, and it defaulted to Python 2.7 and multithreaded, and ...
-4
votes
0answers
32 views

“specified cast is invalid” textbox [closed]

I built a multithreading program. When I use auto complete option (no matter what settings) in textbox it throws me "specified cast is not valis" exception. what can I do? I tried to change STA to MTA ...
1
vote
1answer
24 views

JavaFX Update progressbar in tableview from Task

I know Task has a method updateProgress, I would need to bind progressbar to task, however I cannot do that, as I do not have progressbar as an object. My program has a TableView. Once user enters ...
1
vote
4answers
67 views

C# Multi-thread: Set value once and use it with all rest of the threads

As I am working on multi-threaded application (.Net Windows service) with .Net, I need to make sure the following things. I am calling each task (business scenarios) on each different thread with ...
0
votes
2answers
55 views

How can I check something every 5 min and break check when needed?

In MainPage.xaml.cs I have created a BackgroundWorker. This is my code: protected override void OnNavigatedTo(NavigationEventArgs e) { base.OnNavigatedTo(e); ...
0
votes
1answer
33 views

Manually trigger a @Scheduled method

I need advice on the following: I have a @Scheduled service method which has a fixedDelay of a couple of seconds in which it does scanning of a work queue and processing of apropriate work if it ...
-3
votes
0answers
69 views

Do function pointers have access to outer class private variables? [closed]

class foo { int a = 4; public void functionInFoo(){ a=5; } public foo2 a; public foo(){ a = new foo2(){ @override void doSomething(){ functionInFoo(); } } } } If foo2 ...
0
votes
1answer
69 views

C++ 11 : Start thread with member function and this as parameter

Using this code, I got and error : Error 1 error C2064: term does not evaluate to a function taking 1 arguments c:\program files (x86)\microsoft visual studio 11.0\vc\include\functional ...
0
votes
2answers
37 views

Is it possible to share a register between threads?

I know that when the OS/Hardware switch between the execution of different threads it manage the store/restore the context of each thread, however I do not know many of the details. My question is: ...
4
votes
8answers
87 views

Creating Object in a thread safety way

Directly from this web site, I came across the following description about creating object thread safety. Warning: When constructing an object that will be shared between threads, be very ...
0
votes
2answers
57 views

Multi Threaded Windows Application uses more memory when idle

I've got a technical question around memory usage and multi-threaded applications. My scenario is that I've built a server application (in C#) that is constantly running and updating DB info ...
2
votes
4answers
58 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(); } } ...
1
vote
6answers
61 views

Is this a lazy thread safe Generic multiton?

Could somebody check if this version of a Generic Multiton is lazy and thread safe? I coded it based on Jon Skeet's version of a lazy thread safe Singleton, on O'Reilly's C# Design Patterns, and on ...
0
votes
0answers
15 views

Java thread blocked at com.arjuna.ats.internal.arjuna.objectstore.FileSystemStore.createHierarchy

I run some load test in my Jboss application and when I launched JvisualVM to see what happen, I found a lot of blocked threads ( 150 over 400 threads ). So I done a Thread dump and all of this ...
29
votes
4answers
695 views

C++11 multithread slow

I'm trying around on the new C++11 threads, but my simple test has abysmal multicore performance. As a simple example, this program adds up some squared random numbers. #include <iostream> ...
2
votes
3answers
62 views

Java Thread Scheduling

My notes say that there are two main categories of thread scheduling algorithms, preemptive and time sharing. I'd like to clear up exactly how these work in Java. As I understand (and PLEASE correct ...
1
vote
2answers
26 views

Best way to terminate thread in my usercontrol when containing form is closed?

Dang - 10 YEARS of C# programming and I still just can't deal with the fact that there are no C++ like destructors in this language. 99.9% of the time it is not an issue - but now it's getting me. I ...
3
votes
1answer
50 views

How should i properly invoke a WebBrowser using multiplethreads?

Problem Scope: I'm writing an aplication to save the HTML's retrieved from the Bing and Google searches. I know there are classes to execute the Web Requests using stream such as this example, but ...
1
vote
0answers
35 views

ASP.NET WebMethod holding threadpool thread on long running SQL procedure

I have a reporting page which builds a report from a database table. The report is displayed in a tabular format. To handle user interactions I have built a JQuery table plugin which allows a user to ...

1 2 3 4 5 752