Multithreading is how work performed by a computer can be divided into multiple concurrent streams of execution (generally referred to as threads).
7
votes
3answers
3k views
java ,wait ,notify notifyall
I am confused a bit about wait and notify/notifyAll.
I know there is a lock for every java object. I know wait will release the lock for other thread. How about notify/notifyall? Does ...
-1
votes
1answer
27 views
Multithread Windows Service [closed]
How and where do I multithread my code. I currently have a Windows service that collects events from the Windows System log. The service forwards collected events to a remote service. My code is in ...
0
votes
1answer
41 views
C# : What Will Be The Greatest? Multiple Task or Single for One Job?
I have this code:
public async virtual void Start(IPAddress ip, int port)
{
//Start listening proccess
Listener = new TcpListener(ip, port);
Listener.Start();
...
0
votes
0answers
16 views
load textures into a thread blocks the mainUI in android
I try to load bitmaps and display them into textures (openglES2.0).
I make a runnable thread, and once loaded the bitmap are sent to textures.
Even my thread is runnable, the main UI Thread freezes ...
0
votes
2answers
26 views
Python threading: interpreter shutdown exception
I'm writing an emulator for a vintage computer system in Python, and I'm having some trouble with an exception thrown when trying to "restart" the emulator core thread after coming out of a halt ...
2
votes
1answer
63 views
How wait asynchronous method in a thread?
I need that Join method is called when Download.file method have finished.
I tried to add await keyword but it didn't work
Thread myThread = new Thread(new ThreadStart(()=> await ...
13
votes
4answers
9k views
Multi-threaded debugging tutorial for GDB and C
Does anybody know of a good GDB (or other Linux debugger) tutorial for debugging multi-threaded C code? I'm looking for one that includes simple examples.
4
votes
1answer
129 views
Shared list, multiple conditions, one or more condition variables?
Consider that you have a list:
class CLIENTS
{
public:
CLIENTS();
~CLIENTS();
bool addClient();
bool removeClient();
bool getDataFromClientObj(unsigned int id);
bool ...
0
votes
1answer
55 views
How to deal with slow Web services?
I have created a webserivce using C# on .NET and I'm consuming the same in an android application. At times while testing I notice that the web service is annoyingly slow and does not show results for ...
0
votes
2answers
54 views
Design Review - Resolving IDispatcher Or Dispatcher instance
I am in a process of extending ObservableCollection<T>, which will notify collection change back to UI thread from ViewModel in an ideal MVVM scenario. To achieve this, I am thinking of ...
1
vote
0answers
20 views
Racing condition in android instant search implementation
I am implementing instant search in an Android app which fetches the search results from REST services. I want to avoid the racing conditions when app fires multiple calls. Any idea on how to ...
1
vote
2answers
68 views
Optimizing number of threads dynamically
I have two IO intensive processes that don't do much computing: one is getting and parsing a webpage and the other is storing some data obtained with the parsing in a database. This is going to repeat ...
0
votes
1answer
38 views
Way to work with threads properly in C#
I have some difficulties designing the way my code should work:
Serial #1 (receives data at any time) invokes Routine() if some particular received value A is > constant1, but only if Routine() is ...
0
votes
1answer
41 views
NullReferenceException happens when sending message back to message dialog from BackGroundWorker
It's a C# winform .Net framework 2.0 project: The time-consuming network transferring jobs run in a BackupgroundWorker. In this backgroundwork thread, SynchronizationContext method is used to send ...
6
votes
3answers
3k views
How can I create a System Mutex in C#
How can I create a system/multiprocess Mutex to co-ordinate multiple processes using the same unmanaged resource.
Background:
I've written a procedure that uses a File printer, which can only be ...
2
votes
3answers
83 views
How to make the main end last?
How to make the main processs ended last?
For example I write some code, which created one Thread: Test, who created another three threads - Test2, but main finished before Test started.
public ...
1
vote
1answer
91 views
Multiple TThread Instances
I have a TThread Class that can run independently and terminates and frees itself after it's done. I considered the termination and everything works. The problem is, that I would like to add a feature ...
2
votes
2answers
49 views
How do I stop mp3 files being played multiple times at once?
I am trying to play an mp3 file on button press or selection from a list (which I have managed successfully). However, I cannot seem to stop the song being played multiple times on the same button ...
0
votes
1answer
21 views
how to stop a process when another is running java android
i am doing an app in android that connecting with servers and downloading some chunks.
now i want to have another one process doing other job. here is my code
class RemindTask extends TimerTask {
...
7
votes
10answers
3k views
Multi-threading libraries for .NET
I used multiple threads in a few programs, but still don't feel very comfortable about it.
What multi-threading libraries for C#/.NET are out there and which advantages does one have over the other?
...
1
vote
1answer
86 views
Using std::shared_ptr to share data between producer/consumer threads
I am trying to use std::shared_ptr to point to the data being produced by one thread and consumed by another. The storage field is a shared pointer to the base class,
Here's the simplest Google Test ...
6
votes
2answers
91 views
why isnt numpy.mean multithreaded?
I've been looking for ways to easily multithread some of my simple analysis code since I had noticed numpy it was only using one core, despite the fact that it is supposed to be multithreaded.
I ...
1
vote
1answer
20 views
What is the best option for a countinous background thread in Android?
I want to write an application that listens to things in the background and displays things on the UI based on what it hears. I was looking at the options available and AsyncTask is one of them. ...
0
votes
1answer
18 views
Android no Network in Main Thread and no View update in external thread [duplicate]
I have written application that combines widget, service syncronizing widget and activity for configuring widget.
I've started network transfer to server to fetch weather data and app crashed. After ...
0
votes
2answers
24 views
Multi user aplication through multi terminals
Night people,
I have what I believe to be a simple problem, but can't figure out how to solve it:
I want to create a multi-thread multi-user application which will be launched in the same computer ...
8
votes
4answers
139 views
Is volatile read happens-before volatile write?
I try to understand why this example is a correctly synchronized program:
a - volatile
Thread1:
x=a
Thread2:
a=5
Because there are conflicting accesses (there is a write to and read of a) so in ...
0
votes
3answers
77 views
Objective-C methods not running
I'm messing around with using objects to launch background threads, however when I call an objects method to call the method that will spawn a background thread, nothing happens. I'm a bit puzzled as ...
2
votes
2answers
172 views
Memory Leak in Threaded COM Object with Python
I am creating a COM client within a thread and performing several operations with this client. Each thread is spawned from a server that uses Python's socketserver module which has built-in threading ...
5
votes
3answers
79 views
Thread behaving strangely in JUnit
I'm trying to write a unit test that requires mulitple threads. However, it seems that the threads just stop part way through execution. Consider the following code:
public class Test {
...
3
votes
3answers
103 views
Implementing a Progress Bar in C#
Attempt number 2. Trying to be as clear as possible because I have been on this task for much longer than I should have and made little progress.
I need to make a progress bar for an application. ...
0
votes
1answer
53 views
Trying to spawn a new thread in ASP.NET; no errors, no thread
I am trying to spawn a new thread from an ASP page written in VB.NET, on .NET 3.5.
The page allows a user to upload files and then processes the files into the database.
As the processing can take a ...
-1
votes
0answers
59 views
Difference between Thread, ThreadPool & BackgroundWorker c# [closed]
i many time call method with the help of thread like
static void Main( string[] args )
{
Thread t = new Thread( MyFunction );
t.Start();
}
static void MyFunction()
{
//code goes here
}
...
1
vote
4answers
54 views
How to implement threading between two instances of same application?
I have a WinForm application developed in C# which looks for a file in my local drive and if it doesn't find it then creates it else add some text in the file and then read it.
How can I synchronize ...
0
votes
1answer
62 views
C# sometimes freezing form when running a thread
I mentioned in an other question, that I'm working on an ffmpeg-parser with progressbar and so on.
The following problem is not 100% reproduceable. When I convert a video file with my program the ...
2
votes
1answer
308 views
How to implement frequent start/stop of a thread (QThread)
I need to start and stop a thread very frequently using push button..I am using Qt. Recently I learned to create a QObject of the worker and move it to the object of the QThread as the correct way of ...
1
vote
5answers
428 views
how to use QueueUserWorkItem with ref/out state?
Is it possible to do:
ThreadPool.QueueUserWorkItem(new WaitCallback(ThreadProc), ref data);
such that my ThreadProc could make the caller's data point to a different location than when the call was ...
-1
votes
0answers
49 views
Regarding Thread Synchronization [closed]
Handling of Socket Connection using Threads of same process...?
Thread Invoking Code:
clientSocket = echoServer.accept();
numConnections ++;
CM_Timestamp_Generator oneconnection =
new ...
5
votes
2answers
167 views
C++11 - can't awake a thread using std::thread and std::condition_variable
I'm stuck on a problem when trying to awake a thread by another one. A simple producer / consumer thing.
Below the code. Line 85 is the point I don't understand why it's not working. The producer ...
0
votes
0answers
23 views
Inter-thread bidirectional communication in android
I want to create a thread that communicates both with a network server(bidirectional) and with the UI(bidirectional).
Using 2 instances of the Handler class(one in the UI and one in the new thread) ...
63
votes
9answers
32k views
BackgroundWorker vs background Thread
I have a stylistic question about the choice of background thread implementation I should use on a windows form app. Currently I have a BackgroundWorker on a form that has an infinite (while(true)) ...
0
votes
3answers
44 views
strategy for choosing the location of mutex lock and unlock in a multithreading program
in the following code snippets, I need to protect connfd, because it can change frequently in accept() call.
void *deal_conn(void *arg){
int connfd;
connfd = *((int*)arg);
....
...
1
vote
1answer
22 views
C# Thread.Start life cycle
I have a question about the lifecycle of a thread when i use Thread.Start, for example if a do a foreach loop like this one:
foreach(var item in MyList)
{
var t = new Thread(ProcessRequest);
...
1
vote
1answer
49 views
How to let two threads exchange data via a pointer?
I want an asynchronous thread to edit an object. Therefore I store a pointer to that object.
Data *pointer;
There is also a flag of type std::atomic<bool> to know if the secondary thread is ...
0
votes
1answer
22 views
QuantLib Multithreading/Concurrecy
I am fairly new to QuantLib and don't yet know all the ins and outs of the source but I was trying to test out a simple multi threaded calculation of several option's NPVs and am getting runtime ...
0
votes
3answers
289 views
when a thread is blocked.can cause the blocking of another thread in the same process or the whole process?
when a thread is being blocked is it necessary that this thread blocks any other threads in the same process or its process?is this happening every time?
1
vote
2answers
37 views
Using pseudo-random number engines in deterministic, multi-threaded applications?
I'm trying to use the C++11 random number generators to shuffle decks of cards. I've discovered (by looking in the implementation) that the random number sequence produced by two engines are the same ...
11
votes
8answers
12k views
WebView threads never stop (WebViewCoreThread, CookieSyncManager, http[0-3])
I use a WebView to display some internet content on one of our app's
Activities.
The problem is that when the user switches out of this activity,
WebView's threads keep running!
The problematic ...
0
votes
2answers
25 views
timeout event design with a detached thread
I have a linked list, and I insert nodes into it frequently.
for each node, after it is inserted, an element inside the node needs to be updated in 5 seconds, if no updating happends inside the 5 ...
0
votes
1answer
39 views
Java Executor not working on JdbcTemplate
I am trying to execute a query with a jdbcTemplate using an executor object but for some reason the program doesn't go inside the jdbcTemplate.
ExecutorService executor = ...
3
votes
3answers
99 views
How do I tell how many threads a Linux binary is creating without source?
Suppose I have a generic binary without source and I want to determine whether it is running serially or spawns multiple threads.
Is there a way I can do this from the linux command line?



