The thread-priorities tag has no wiki summary.
6
votes
4answers
113 views
+50
Thread priorities in a thread pool (problems in different OS)
I am working on a project that is both memory and computationally intensive. A significant portion of the execution utilizes multi-threading by a FixedThreadPool. In summary I have 1 thread for ...
6
votes
2answers
101 views
c#: need to prioritize asynchronous socket reads
My application pre-fetches a large number of video frames using asynchronous
HttpWebRequest requests. So, if there are 100 frames, the prefetcher will
request all 100 frames asynchronously, all at ...
2
votes
0answers
29 views
Changing thread priority doesn't have an effect
I'm trying to change priority of main thread using android.os.Process.setThreadPriority. I have log messages before and after priority changing, here is code:
public class TestActivity extends ...
2
votes
2answers
91 views
How are nice priorities and scheduler policies related to process (thread?) IDs in linux?
I am investigating how to have my Linux desktop experience remain smooth and interactive while I run CPU intensive tasks in the background. Here is the sample program (written in Java) which I am ...
2
votes
4answers
1k views
C linux pthread thread priority
My program has one background thread that fills and swaps the back buffer of a double buffer implementation.
The main thread uses the front buffer to send out data. The problem is the main thread ...
2
votes
4answers
1k views
Changing thread priority to make my program and computer more responsive
I've written a .NET winforms application that uses a secondary thread to do some heavy processing, which communicates it's progress back to the UI thread. Everything works correctly, the form shows ...
1
vote
1answer
128 views
What does SetPriorityClass(REALTIME_PRIORITY_CLASS) actually do?
What does REALTIME_PRIORITY_CLASS (with THREAD_PRIORITY_TIME_CRITICAL) actually do?
Does it:
Prevent interrupts from firing
Prevent context switching from happening
on the processor (unless the ...
1
vote
2answers
104 views
Priority Level for Hidden Windows in Win7 or Win2008
For windows 7 and/or windows server 2008 - is there any specific difference in thread priority level or class between hidden windows and visible windows? In other words does the OS deprioritize the ...
1
vote
3answers
830 views
Java Executors: how can I set task priority?
Is there a possibility to set priority to tasks which are executed by Executors? I've found some statements in JCIP about it's possible but I cannot find any example and I cannot find anything related ...
1
vote
7answers
2k views
How can you ensure in java that a block of code can not be interrupted by any other thread
exampl:
new Thread(new Runnable() {
public void run() {
while(condition) {
*code that must not be interrupted*
*some more code*
}
}
}).start();
SomeOtherThread.start();
...
0
votes
1answer
648 views
How to set Priority of IntentService in Android
I was wondering if it is possible to set the priority of an IntentService like you can with a Thread. So far I have not found anything.
0
votes
3answers
613 views
Setting priority to java's threads
I have a program that runs in a few threads. The main thread shares an object with the other threads and in the main I have a call to:
synchronized(obj){
do stuff
}
I have a suspicion that the ...
0
votes
1answer
115 views
Can Visual studio plugins get notified of c++ build/CL tasks/calls to CL.EXE?
I would like my cl.exe (the c++ compiler process) processes to run at lower than normal priority so that my UI threads are not affected. I have turned on /MP builds for most of my projects and want ...