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
24 views

Mutlithread programme, that holds threads in vector instead of in an array

I've found a simple example, that shows, how to use treads in C++. I understand, how it works, nevertheless I'm not able to change the source to use vector of threads instead of an array. I want to ...
0
votes
1answer
13 views

Invoking method defined in viewModel from global X close button

In a viewModel of my MVVM based WPF application, I have a two commands to handle two different Cancel clicks, at two different states. When there is no ongoing operation progress - it relays the ...
0
votes
1answer
27 views

socket send and retrieve

Good day all i am new to java and i would like to know if someone can help me with this problem I have a server and it receives info from the client but my if statement to check the value that was ...
-4
votes
2answers
82 views

Java program wont stop

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 ...
0
votes
0answers
20 views

How to abort the uploading through HTTPWebRequest correctly?

ImageFile currImage = (ImageFile)image; HttpWebRequest req = (HttpWebRequest)WebRequest.Create(BuildUrl(currImage.Meta)); req.AllowWriteStreamBuffering = false; req.Method = "POST"; ...
0
votes
1answer
6 views

Command or steps to list out the callstack of other threads where a particular pointer is used?

I am new to using Windbg. I got a crash dump of my application. Using Windbg I could able to get the callstack of crash and found that dynamic_cast is failing for a pointer. Since pointer is corrupted ...
0
votes
1answer
25 views

Java nullpointerexception for a 2D scrolling game

I'm making a game, its 2D side scrolling, kinda like terraria. In my game, i have offsets, XOff and YOff, and those move the terrain. I also have a method for my character, move(), and all that does ...
1
vote
1answer
24 views

Is there any difference without fflush in that code?

In cpp reference, it claims fflush is: Causes the output file stream to be synchronized with the actual contents of the file. Indeed, I don't understand what it means. I just wonder, in that ...
0
votes
1answer
33 views

iOS Application - How To Check Server For Updates Every 60 Seconds?

I'm currently developing an application that needs to constantly check the server it's associated with every 60 seconds for any updates that may have occured. The server side of it is fine and not a ...
0
votes
1answer
7 views

OpenCV VideoCapture does not block on OS X

Short version: on OS X, if I call VideoCapture::read() from a thread other than the main() thread, the call returns immediately instead of blocking till a new frame. This one works as expect: void ...
0
votes
0answers
8 views

Rails: How to load a thread on startup

I am working with a UDP server in rails and I have the server called from my config/initializers folder. If I run the code thread_a=Thread.new{UDPserver()} then the the code works fine however the ...
1
vote
1answer
19 views

How to Interrupt/Stop/End a hanging multi-threaded python program

I have a python program that implements threads like this: class Mythread(threading.Thread): def __init__(self, name, q): threading.Thread.__init__(self) self.name ...
2
votes
3answers
58 views

Multi-threading C# 2.0 confusion

I am trying to figure out how to multi-thread an application. I am stuck trying to find the entry point to start the thread. The thread that I am trying to start is : plugin.FireOnCommand(this, ...
3
votes
1answer
63 views

when you terminate() a Thread (class TThread), does it exit every child of this thread?

I have a code in Delphi which does the following: procedure THilo.Execute; // (which is the thread) begin inherited; FreeOnTerminate := True; while not Terminated do begin (...) ...
0
votes
0answers
14 views

Python Socket Multithreading with Variable/Object Sharing Between Parent and Child? [closed]

I need to build a Socket server in Python that must be multi-threaded in order to support large number of requests however I'm a bit confused about multi-threading I need to know if a thread in ...
2
votes
3answers
39 views

Synchronize Protection Not Working for Dual Threads

Below is my stripped down java code for review. I have several subclasses, and when execParallel() is called, a new thread is launched. This thread and the default thread must both execute ...
0
votes
0answers
6 views

TestNG - Running parallel tests that depend on another test that should only be run once

The scenario is as follows: I use Selenium to go to a website, fill out a form, and send to the selected recipients (let's say 10 people) I then login as each user and perform the necessary actions ...
0
votes
2answers
91 views

Understanding async/await without threads [duplicate]

According to MSDN, async and await do not create new threads: The async and await keywords don't cause additional threads to be created. With this in mind, I'm having difficulty understanding ...
-2
votes
1answer
33 views

Spinning a new java thread to do db work for better UI responsiveness [closed]

I have an old application, it uses jdbc to do access to db. I have a page that handles edits to a record, and I was thinking of spinning a new thread when the save button is hit, so the user does not ...
1
vote
1answer
38 views

Load Images in GridView in a Synchronization - Android

I have a question, I have a GridView in which I am loading images using a ImageView, these images it´s stored in the SD, for this I am using the Runnable class for loading. When it scrolling through ...
0
votes
2answers
57 views

How does the Lock statement determines the order of granting object access? [duplicate]

I require a section of the code to be run by only one thread at time (single resource lock). the lock(object) statement in C# allows this. It doesn't however, preserve the order of requests to the ...
8
votes
4answers
101 views

Different between immutable and effectively immutable objects?

This is a sentence from Java Concurrency in Practice Shared read-only objects include immutable and effectively immutable objects. What are the differences between immutable and effectively ...
1
vote
1answer
43 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
0answers
17 views

AS3 Passing data into a worker thread and why events are null

So, i've bee trying to work with AS3 Workers and despite the lack of information on them i've managed to get them working, mostly. It seems i've come across a strange issue that I haven't been able ...
0
votes
1answer
29 views

slots and signals for multithreading

I have a job in pthread which prepares a data set for plotting. Then I need to display this data in a main window like a graph. How can I transfer the data set form the thread to the rendering widget ...
0
votes
2answers
92 views

Invoking static methods from thread in C#

I'm trying to use this great project but since i need to scan many images the process takes a lot of time so i was thinking about multi-threading it. However, since the class that makes the actual ...
0
votes
3answers
33 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
54 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
28 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
38 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
32 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
43 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
49 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
71 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
40 views

Reading a single file with Multiple Thread

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
53 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
84 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
0answers
9 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
52 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
6 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
55 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
58 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
11 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
34 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; ...
0
votes
1answer
38 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 ...
-3
votes
3answers
79 views

Problems with threads

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
56 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
33 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 ...

1 2 3 4 5 750