Multithreading is how work performed by a computer can be divided into multiple concurrent streams of execution (generally referred to as threads).
0
votes
0answers
19 views
Using easymock in multithreading
I want to test that some method would be recalled on failing. Calling executed in separate thread. So I write code like this
final Foo mock = createStrictMock(Foo.class);
mock.bar();
...
0
votes
0answers
22 views
How WakeLock works in general? For me it does not work
Can anyone describe or point me to a good description to "how wakelock in android works"? You can forget android standard documentation for it.
I have a service (started as forground) and in the ...
3
votes
2answers
72 views
CUDA branch divergence doesn't make any differences
I'm trying to learn CUDA by myself, and I'm now into the issue of branch divergence. As far as I understand, this is the name given to the problem that arises when several threads in a block are said ...
0
votes
1answer
42 views
How to handle variables shared between UI thread and another thread in android?
I am trying to develop an audio processing related app in android. I have one thread(not the UI thread) in which I am doing an operation. I need to update the result of the operation while it is still ...
0
votes
4answers
63 views
Handle Thread in c# for print
I want to do the printing from my dot net project as background work as a thread, for that what I did is, first collect the each output string to a collection of string like this:
...
0
votes
1answer
54 views
Thread output listener
I need to make a thread that start at swing button push and wait for input from rs232, process it and return String to my variable. The question is how to do that?
it should be something like that:
...
0
votes
0answers
45 views
Identifier based code synchronization
I want to synchronize a piece of code that essentially accesses some file on disk. My requirement is that I want to synchronize the code only if multiple threads are trying to access same file. If ...
0
votes
3answers
51 views
Log which queue/thread a method is running on
Is there a way to log the thread or queue that a method is running on / called from? Something like:
- (void)foo
{
NSLog(@"Running on %@ queue, %@ thread", queue, thread);
}
2
votes
2answers
40 views
Why the EventWaitHandle.WaitAny method have 64 handle limit?
I have an application that need control many slave processes to do the task. And there is a matching thread to do the match job. I use EventWaitHandle to communicate between them, at free time the ...
0
votes
1answer
43 views
Background worker blocking UI when using web service call
For some reason when i put a long running web service call (doesn't matter if its a legacy one or WCF) in a background thread it seems to be locking up the UI main thread.
I cant see anything wrong ...
0
votes
2answers
83 views
(Sometimes) The given key was not present in the dictionary
I am using the code below to start threads with a list parameter but sometimes it throws an exception:
The given key was not present in the dictionary
From this line:
Thread MoveThread = new ...
-1
votes
2answers
30 views
Main Form got hang during long running process in different thread.
I'm using threading in my windows form application.
Code
Thread sqlProcessThread = new Thread(new ThreadStart(doSqlWork));
sqlProcessThread.IsBackground = true;
sqlProcessThread.Start();
When ...
14
votes
4answers
470 views
Is pointer dereferencing atomic?
Lets say I have a pointer to an integer.
volatile int* commonPointer = new int();
And I have multiple threads that dereference that pointer.
int blah = *commonPointer;
But, one thread needs to ...
2
votes
0answers
54 views
Are member functions of std::wstring_convert thread safe?
We're using a
std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>> converter;
in a logger of ours that gets a UTF-16 string from a legacy component and converts it to UTF-8 that we ...
1
vote
2answers
60 views
Wait for specific condition to become true in threads
I have an application that makes HTTP requests to a site, ant then retrives the responses, inspects them and if the contain specific keywords, writes both the HTTP request and response to an XML file. ...
2
votes
4answers
62 views
Changing image in imageview using Threads
I'm getting error with this code. Why huhu
123123123
Thread timer = new Thread()
{
public void run()
{
try
{
sleep(1500);
...
2
votes
2answers
71 views
WCF + Singleton + File transfer + Multithreading
I have a file transfer service written using WCF. It recieves a file sent by the client.
The client inturn sends across the file using FileStream + MessageContract. I have made the WCF file transfer ...
1
vote
2answers
45 views
multithread autorelease issue with ARC?
A class of service has a nonatomic property which is set in a serial queue.
@interface Service
@property (strong, nonatomic) NSDictionary *status;
@property (nonatomic) dispatch_queue_t queue;
...
...
0
votes
2answers
37 views
Replacing Thread.Suspend and Thread.Resume in a windows service
We have a service that does the following basic workflow:
1) Starts, reads config settings and performs some calculations in a large loop.
2) Each iteration of the loop, it needs to be able to check ...
0
votes
1answer
24 views
flask threading on triggering a different process
In route request in Flask, how do I trigger a thread to start and have it continue right away to the next line. In the code below, how do I get the print "Onto the next already" to occur right after ...
-1
votes
4answers
80 views
How to tell if thread is running by its ID with C#
I'm not sure if such is possible in a managed code. Let me explain. I need to know that a particular thread is currently running within my process by its ID. Can I do that from another thread in the ...
0
votes
0answers
38 views
Manage AFNetworking multiple requests with AFHTTPClient enqueueBatchOfHTTPRequestOperationsWithRequests method
I want to create a table view slide menu like FB or Linkedin, I mean dynamically, so I have to make some requests at the same time. I am using AFNetworking. with a custom AFHTTTPClient which its ...
0
votes
2answers
58 views
Multi-threaded bouncing balls, issue displaying balls
I'm trying to use multithreading to draw balls that bounce around inside a JFrame. I can get the coordinates of each ball to update and print out, but I can't get the balls to display. I'm not very ...
-4
votes
0answers
85 views
How to store threads in vector [closed]
How does one store threads in a vector or in any data structure for that matter.
I looked at this question and I tried the following:
std::vector<std::thread> threads;
...
2
votes
1answer
51 views
Linux thread id comparison
So, I'm having a very bad time finding a current thread id in a list of structures, which reflect information about threads.
Basically, each element from the list has a field pthread_t id. My search ...
0
votes
2answers
53 views
Putting a thread to sleep for decimal value
This question is about System.Threading.Thread.Sleep(int). I know there is no method for a decimal value, but I really need to work with decimals. Here is the situation
I have a device which takes ...
0
votes
1answer
59 views
perl, starting more processes at the same time
I am using Strawberry Perl on Windows XP to download multiple html pages, I want each in a variable.
Right now I am doing this, but as I see it, it gets one page at a time:
my $page = `curl -s ...
1
vote
3answers
45 views
Linux, cancel blocking read()
In a multi-threaded Linux program used for serial communication, is it possible (and what would be the best approach) to terminate a blocking read() call from another thread?
I would like to keep ...
0
votes
1answer
22 views
Terminating subprocess in python2.7
I am working on windows 8 x64 system
I am writing a code in which i am using subprocess to execute one lengthy program
while execution i fetch output of program and analyse it runtime, for particular ...
0
votes
0answers
48 views
Android Bluetooth connecting to Device socket.connect() wont connect
FIXED!!!
Didnt work because of the UUID
since api15 you can use a get function to get the uuid
UID uuid = bluetoothDevice.getUuids()[0].getUuid();
BluetoothSocket socket = ...
-3
votes
1answer
37 views
what's the difference between a thread in a block and a warp(32 threads)?
I have written a program for the string matching test,to test the performance vs cpu.
I just call the kernel by <1,1>,one block which contains one thread, the time is 430ms, and then I use one ...
2
votes
3answers
98 views
Why 4 process better than 4 thread?
void task1(void* arg) {
static volatile long res = 1;
for (long i = 0; i < 100000000; ++i) {
res ^= (i + 1) * 3 >> 2;
}
}
4 threads, working simultaneously, perform ...
1
vote
1answer
97 views
How to use futures with Akka for asynchronous results
I am trying to write to multiple files concurrently using the Akka framework, First I created a class called MyWriter that writes to a file, then using futures I call the object twice hopping that 2 ...
-1
votes
2answers
53 views
Can't create form in another thread C# [closed]
I built a C# program that open other forms using multithread (I use it because it take time to load the forms) , something like a portal. My problem is when I call to create a specific form in the ...
-2
votes
0answers
75 views
background worker blocking main thread .net
We are using background workder thread (C#.net) for performing some tasks asynchronously in windows application (developed using .net 3.5) ....Registered the Do_Work event (invoked by windows timer by ...
-4
votes
0answers
18 views
stop a AsyncTask to end an activity [HELP] [duplicate]
I have a so called AsyncTask same.
I want to change AsyncTask stop activity.
How I can do?
sorry for my English.
Thank you.
0
votes
1answer
21 views
Multithreading logic
Multihreading is way over me. I do not ask for a specific code, instead I'd like you to help me on the logical structure of my problem.
We have a restaurant with only 2 waiters, which are taking ...
1
vote
0answers
24 views
Starting a method in a thread, then changing the variables and starting a second thread of that method
im trying to use setLv1Sunflower() to start a new thread, which shows a plant grow where ever the player picks. after pressing the seed button, the player picks which placeHolder* that the plant will ...
0
votes
2answers
46 views
How to close JOptionPane automatically?
I have a Thread running and in the time while the thread working i want to display a JOptionPane.showMessageDialog saying that the application is working and after thread is stopped, JOptionPane will ...
0
votes
1answer
65 views
How to restart a multithread C++ programm inside the coe?
as i describe in the header I would like to have in a thread an if statement which is checked every 1 minute and if it is true restart the whole programm.. Any suggestions?
void* checkThread(void* ...
0
votes
0answers
21 views
I can't implements DoDragDrop Operation on second dialog
Well I struggled this problem a lot.
I tried to do a simple drag and drop operation, so I did it in the main form(the one that operate from the Main thread) and it was as easy as it sounds.
the code ...
0
votes
2answers
84 views
Java thread switching
I have a program that is supposed to run multiple threads at the same time.
It's a simulation of the card game Uno, and you're supposed to have a thread for each player.
Now here's the catch: ...
-1
votes
0answers
38 views
What's the best practice to control lots download procedure? [closed]
I have a program that need to run lots of thread concurrently.
When I started about 200 threads with 12 ThreadPool, I noticed that system runs at low performance.
Actually lots of my thread in most ...
0
votes
0answers
27 views
Using SyncLock inside a property
I have a variable that is being used by multiple threads, so I am using SyncLock when getting and setting the variable. I am wondering if I can wrap the SyncLock inside a property, so that I don't ...
0
votes
0answers
36 views
Python: [Help] Best use of asynchronous timer (Non Blocking Timer)
My question is if I have a thread program that runs in an infinite loop and each loop does a simulation step, at every loop there might be a request for timer to do something. This sounds easy but the ...
0
votes
1answer
56 views
Train two models concurrently
All I need to do is, train two regression models (using scikit-learn) on the same data at the same time, using different cores. I've tried to figured out by myself using Process without success.
gb1 ...
1
vote
1answer
65 views
C# 2.0 Multi-threading with a plug-in architecture
I have a well established console application in c# 2.0 that uses plugin architecture.
As of right now, the program uses basic multi-threading that can run several instances. The threads are created ...
0
votes
1answer
22 views
Doing threading with sqlalchemy properly?
I have a multi threaded application where the treads work on some objects fetched using sqlalchemy. The objects are put in a thread queue which the threads poll from.
In the main thread I am doing ...
3
votes
3answers
123 views
high frequency timing .NET [duplicate]
I'm looking to create a high frequency callback thread. Essentially I need a function to execute at a regular high frequency (up to 100Hz) interval. I realize that windows has a normal thread ...
-2
votes
1answer
45 views
How is exit status passed between pthread_exit and pthread_join? Is a correction needed in man page?
Question:
How exactly is exit status passed between pthread_exit and pthread_join?
From pthread_join man page
int pthread_join(pthread_t thread, void **retval);
If retval is not NULL, then ...





