0
votes
3answers
18 views
Datatable update in different thread (WPF)
Hi,
I have a Datatable assigned to a DataGrid in main thread. I am updating the same DataTable from two different thread classes. Although the rows gets updated successfully in DataGrid control, I …
0
votes
1answer
20 views
File read by interrupt in java
Hi,
I am using a text file to store the serial port output. And now I want to put the contents of the file to an textArea in java. I have created a dedicated thread for file read operation. I need …
0
votes
1answer
18 views
incorrect function being called on multiple fast calls to python’s threading.Thread()
I'm having some problems with launching threads from a list of functions. They are in a list because they are configuration-specific functions. I'm wrappering the functions so that I can store the …
2
votes
5answers
103 views
Interrupting a thread that waits on a blocking action?
I am running a thread whose main action is to call on a proxy using a blocking function , and wait for it to give it something.
I've used the known pattern of a volatile boolean and the Interruption …
0
votes
3answers
73 views
C# threading issue
To play a bit with threading, delegates and backgroundworkers, I'm putting together a few small applications, I'm having a bit of trouble with one of them.
I've a Windows form, with a textbox, a …
0
votes
0answers
12 views
How to reload controls without getting other controls stuck?
I handled a click event to a button. It calls control1's animation function and control2' reloading content function. However, control1's animation will being "hanging" for a second while contorl2 is …
0
votes
4answers
141 views
recursive file search thread
i have a routine that searches files:
procedure RecSearch(const sPathName, sFile : String; const subDir : Boolean);
var
sr : TSearchRec;
sPath : String;
begin
Application.ProcessMessages;
…
0
votes
1answer
33 views
Do we have a thread library that is compatible with Turbo C?
Currently I am developing a program for academic purpose. We use Turbo C because we are requesting for interrupt directly with the hardware.
We can do anything for our project, and I've already …
0
votes
5answers
66 views
Running 30 php script at once in the background
I have a PHP script that must run 30 parallel times each with a different argument. What is the best way to do this so that each script can have as much even exposure to the processor as possible?
0
votes
3answers
47 views
Object serializing performance
Let's say I have a simple tcp server generating an array inside a thread, serializes it and sends it to a client over tcp connection and when it reaches the client, the client deserializes it and …
0
votes
1answer
7 views
Alternative to interrupt_main() in Jython?
Whenever the code thread.interrupt_main() is used in Jython it doesn't actually interrupt the main thread. Any ideas as to alternatives? Code is below:
import threading
import dummy_thread as _thread
…
0
votes
1answer
21 views
Jython How to stop script from thread?
I'm looking for some exit code that will be run from a thread but will be able to kill the main script. It's in Jython but I can't use java.lang.System.exit() because I still want the Java app I'm in …
0
votes
2answers
31 views
How can I know/see on which core a thread run ? (In win XP)
Hi,
If I have a multi-thread program, how can I know on which core
each thread run ?
Is there any another solution for win XP in C# ?
I try this:
[DllImport("ntdll"), …
0
votes
1answer
31 views
Android: raise AlertDialog from background thread
In my activity there's some stuff going on in a background thread, which gets started in Activity_1. The processing of the background thread takes a while and I want to notify the user when it's …
0
votes
2answers
49 views
CUDA - Better Occupancy vs Less Global Memory Access?
Hey
My CUDA code must work with (reduce to mean/std, calculate histogram) 4 arrays, each 2048 floats long and already stored in the device memory from previous kernels.
It is generally advised to …
