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)

3
votes
0answers
96 views

CoInitialize in Delphi DataSnap server application

I have an XE2 DataSnap server (Windows service) which uses a 3rd party out-of-process COM component within it's methods. Being COM, I understand it requires the CoInitializeEx and CoUninitialize ...
0
votes
1answer
36 views

How do I run a thread run() inside of the GUI's actionPerformed() method?

This is my first time doing multi-threading and I'm kind of stuck on how to make two threads, "Reader" thread and "Writer" thread execute only when the JButton "jbStart" is clicked? I can't put the ...
0
votes
0answers
41 views

how to return value from new Thread by ThreadManager.createThreadForCurrentRequest(new Runnable() gae java

there are 2 part . I am use google app engine java. 1, task Queue, to start 2 process 2, each process using ThreadManager.createThreadForCurrentRequest(new Runnable() { for 2 Thread I expect to set ...
0
votes
1answer
65 views

Delphi - Control Dialog Form Show Status from a Thread

In my application I do a big quantity of task in a thread for example multiples querys to big database. I created a dialog (custom form), with a progressbar and status bar that show at final user what ...
2
votes
1answer
198 views

Simultaneous downloading a file and inserting to mysql database with python

I'm downloading relatively large files (10mb each) with urllib2, and then loading it as a json file and inserting data into a mysql database, and then repeating the process in an infinite loop. The ...
2
votes
0answers
304 views

Server seems to drop connections in accept

I'm having trouble with implementing a server that has a master thread invoking accept() and then passing on the new client socket to a slave thread (I have a fixed-size thread pool created ...
0
votes
1answer
33 views

NSMutableArray collection and @Synchronized blocks

In Objective C I'm using a NSMutableArray instance from various thread and I'm using @synchronized to make it thread safe. currently all my acces to this array are protected with a @synchronized ...
0
votes
0answers
34 views

How to log into separate files per thread using EclipseLink

Scenario: Multi-threaded application that interacts with a relational database using EclipseLink JPA Implementation Desired: Having each thread to log SQL activity to a different file The ...
0
votes
1answer
24 views

Asynchronous Events Not Outputting to the Console

I just created my first multithreaded program, and it is not working. The following is the smallest complete program I could come up with that portrays what I am trying to do. Essentially, I created: ...
0
votes
2answers
21 views

CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views

In my app I'm using custom library to load svg files and loading process is a bit expensive so I've trying to move it into another thread. And I get "CalledFromWrongThreadException". According with ...
0
votes
1answer
25 views

UIView Animation in TableViewCell

Tearing my hair out here, any thoughts? I have a tableview that when it loads, Section 1 is a scrollView that starts with it's content offset scrolled all the way to the end. Section 2, is blank and ...
0
votes
2answers
27 views

run a thread behind activities in android

Im developing for an android aplication and I need to run a thread in the background that is going to be check the current gps and show an activity depending of the current location data but the ...
1
vote
1answer
62 views

Sending arguments to Python threads blocks other threads

Consider this test application for passing arguments to Python threads: #!/usr/bin/python3 from pprint import pprint import signal import sys import threading class CallThreads(threading.Thread): ...
0
votes
1answer
57 views

Thread.join() not working

This is the comple java class (GFXSurface). Inside this class, a second class is defined, public class GFXSurface extends Activity implements OnTouchListener { AnotherSurface ourSurfaceView; float ...
0
votes
1answer
25 views

ASP.NET — Launch a thread to work a few minutes in the future?

I have an app that relies around firing off events (phone calls) at specific times. I am using shared hosting so I can't just setup a windows service or cron job. I have a URL such as /CheckCalls ...
20
votes
1answer
292 views

What's the best way to lock multiple std::mutex'es?

When we want to lock multiple std::mutex'es, we use std::lock(). But std::lock() does not provide RAII feature. When we want to lock a std::mutex in RAII way, we use std::lock_guard. But ...
5
votes
2answers
289 views

ReadOnlyCollection<T> Thread Safety

The documentation for ReadOnlyCollection(of T) states that: A ReadOnlyCollection(Of T) can support multiple readers concurrently, as long as the collection is not modified. Even so, enumerating ...
-1
votes
2answers
30 views

iOS correct use of multithreading

I would like to know how to use multithreading in iOS. I am aware of GCD and NSOperationQueue, but I am not sure how to use them properly. When should I use GCD/NSOperationQueue? How do I cancel a ...
0
votes
1answer
14 views

Updating the UI control's value in the runtime from background thread.

I know this sound a very simple question. I'm still a newbie in iPad app development. Would you please tell me how would I update the contents in the run time. The following code may be helpful to ...
6
votes
2answers
37 views

Cause runtime exceptions to be properly ordered with println in console output

A common problem with VM Java console output is that System.out and System.err are not usually synchronized properly, possibly because they are on different threads. This results in mixed up output ...
1
vote
5answers
124 views

Multithread C++ program to speed up a summatory loop

I have a loop that iterates from 1 to N and takes a modular sum over time. However N is very large and so I am wondering if there is a way to modify it by taking advantage of multithread. To give ...
3
votes
3answers
67 views

Is a Task lightweight compared to a Thread?

I overheard a coworker saying that a Task is basically a lightweight thread. Coming from a C++ background (where threads where the lightest weight processing unit), this seems counter-intuitive to me. ...
11
votes
3answers
123 views

Happens-before relationships with volatile fields and synchronized blocks in Java - and their impact on non-volatile variables?

I am still pretty new to the concept of threading, and try to understand more about it. Recently, I came across a blog post on What Volatile Means in Java by Jeremy Manson, where he writes: When ...
0
votes
1answer
25 views

Android: “Auto refresh” after a certain time

i have search how i can do an "Auto refresh" or a runnable method for my program, i saw some posts about handlers and threads... I think that what im search from is a thread but i cant get the program ...
0
votes
3answers
36 views

Thread on AlertDialog

I created class that inheritance from AlertDialog. This class start thread that check some value over the internet (long operation time). The dialog have single button (POSITIVE_BUTTON). this button ...
1
vote
2answers
49 views

Multiple threads attempting to lock

I want to use pthreads and pthread_mutexes in a C++ program. I don't have any actual code yet, just a question on how mutexes work. If I have thread 1 lock a mutex, then n number of other threads ...
0
votes
1answer
37 views

c# Simple Wait Thread Queue (Wait when queue is full) to download Multiple files from Sharepoint

I have written a simple program to concurrently download multiple files from Sharepoint using Threading. I used a Do While Loop to make sure the program will wait whenever the queue is full. Please ...
0
votes
2answers
1k views

Drawing/Rendering a UIView Within a Separate Thread so NSTimer Always Fires Timely

I'm using a NSTimer to fire a drawRect within the app's main view. The drawRect draws a few images, and blends each using kCGBlendModeScreen (which is an absolute must). However, the drawRect takes ...
-2
votes
1answer
27 views

java service(threads) dependency [closed]

I'm trying to learn threads in Java. I'm beginner so I have some questions. I have task to make. I have to make 4 java services (A,B,C,D). Every service should run his own thread, and should have ...
0
votes
2answers
80 views

countdown multiple threads java

I have 4 threads witch are printing numbers from 15 to 0.I want to control executing of my threads for example I want first to thread D to finish and after him thread C and after him thread B and ...
6
votes
2answers
1k views

Precisely measure execution time of code in thread (C#)

I'm trying to measure the execution time of some bits of code as accurately as possible on a number of threads, taking context switching and thread downtime into account. The application is ...
0
votes
0answers
22 views

Python threading: Queue workers - hang the program

I'm trying to implement a simple Queue with workers that do something. The program should wait until the workers have finished emptying the queue, and continue execution. I took the documentation ...
0
votes
0answers
18 views

Persisting thread in delayed_job

So I have a rails app where I want my delayed job process to communicate with an SMPP server. But the problem occurs when I try to send the messages. My thread that I created in an initializer ...
0
votes
0answers
9 views

Trouble with AsyncTask or MultiThreading

.hey guys! I have this code that retrieves the contact names and numbers from the contacts app. I have about 2300 contacts in my phone (I'm a church worker) and retrieving this volume of contacts ...
1
vote
1answer
68 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, ...
2
votes
2answers
59 views

Execute a program in my C code

The program I want to use in my code is a command line tool. Users type ./program first, and then users can use some command provided by the program. I want to execute two commands in my source code ...
0
votes
0answers
33 views

Issues with TryAdd performance in a ConcurrentDictionary

I have a ConcurrentDictionary that I use to store valuation results in one of my classes. This dictionary is instantiated when the class is. I use a Parallel.ForEach to perform my valuations, which ...
4
votes
4answers
4k views

A good small example to demonstrate wait() and notify() method in java

Can anybody please provide me a good small example demonstrate wait() and notify() functionality in java. I've tried with the below piece of code but it's not showing what i expected. public class ...
0
votes
2answers
1k views

Multi threaded socket based server - possible in php?

My terminology may be way off here, so bare with me: We have a bunch of cli cron style scripts that are coded in php. A few of these services use ftp to send data to remote locations. The way ...
1
vote
2answers
90 views

how to avoid “(not responding)” in TForm.Caption?

In the main VCL thread I run a script that can take minutes to execute (it is a restore database script). In case the user clicks on the UI I have the "not responding" in form caption. ...
2
votes
3answers
62 views

Using a thread loop to update a JFrame

ive done some extensive searching on using threads in a loop and whilst I understand the concept how how seperate threads work, I still cant seem to grasp how to implement it in my simple application. ...
2
votes
2answers
60 views

Main differences between threading with shared memory and MPI?

although I have been playing with pthreads, OpenMP, intel TBB, and threading in general for a while I still don't understand what is the main difference between a message passing interface ...
2
votes
2answers
66 views

Passing QList<QString>* to a signal from QThread

In my qt application i have a class (worker) which is called from the object which runs in a thread. In my worker class i create QList, like this QList <QString> albums; while (i.hasNext()) { ...
0
votes
1answer
24 views

Getting exception “duplicate transaction identifier ” while using Transaction.Current.DependentClone

I am creating a mechanism to bulk-insert (import) a lot of new records into a ORACLE database. I am using multiple threads and dependent transactions: Creation of threads: const int ThreadCount = 4; ...
4
votes
2answers
634 views

Scenario: Global variables in DLL which is used by Multi-threaded Application

Few months back, I had come across this interesting scenario asked by a guy (on orkut). Though, I've come up with a "non-portable" solution to this problem (have tested it with small code), but still ...
0
votes
1answer
15 views

Cocos2d and concurrency: how to properly stop animations between scenes

I got a GameScene (here called ShooterScene) and I do exit to a MainMenu. I do use sprite sheets which I load in a texture cache. There are various animations going on (on background elements, ...
0
votes
1answer
51 views

Is it intelligent to redline the CPU through Task.Run

I know its bad for the Performance of my application to create too many threads (threadstarvation) but I'm not sure how this translates to the Async/Await functionalities. I understand Task.Run() uses ...
0
votes
0answers
20 views

Roboelectric background thread synchronization

@Test public void testShows() throws InterruptedException { final CountDownLatch latch = new CountDownLatch(1); final TestCallback<ArrayList<CompleteShow>> call = new ...
0
votes
0answers
10 views

Tool to view culture info of executing threads

Does anyone know a tool that displays list of threads on an executing .NET process along with its culture info? What I would like to see is Thread1 Name1 en-US Thread2 Name2 da-DK
2
votes
2answers
39 views

Why do I get a thread context switch every time I synchronize with a mutex?

I have multiple threads updating a single array in tight loops. (10 threads on a dual-core processor @ roughly 100000 updates per second). Each time the array is updated under the protection of a ...

1 3 4 5 6 7 770