Tagged Questions
The io-priority tag has no wiki summary.
7
votes
4answers
4k views
How can I/O priority of a process be increased?
I want to increase the I/O priority of a process, both answers for .NET and windows vista would be nice... (or processexplorer is ok as well)
4
votes
1answer
475 views
Determine if the current thread has low I/O priority
if (reader.is_lazy()) goto tldr;
I have a background thread that does some I/O-intensive background type work. To please the other threads and processes running, I set the thread priority to ...
3
votes
3answers
328 views
SetPriorityClass equivalent on Linux
I have a daemon-like application that does some disk-intensive processing at initialization. To avoid slowing down other tasks I do something like this on Windows:
...
3
votes
1answer
212 views
Low-priority I/O in OS X
launchd has option to run process with low priority I/O. How does it work exactly? (how low is low, does it affect all operations?)
Is there an API that enables low priority I/O in applications not ...
3
votes
4answers
280 views
I/O prioritization in Java
I'd like to use of the Vista+ feature of I/O prioritization. Is there a platform independent way of setting I/O priority on an operation in Java (e.g. a library, in Java 7) or should I revert to a ...
2
votes
0answers
111 views
How I/O Prioritization Works (in Windows 7)
Something has confused me about I/O prioritization in Windows 7:
Normally, "prioritization" only makes a difference when multiple requests are happening for the same resource. However, I've noticed ...
0
votes
1answer
29 views
How to be sure that the process is set to REAL_TIME priority
I'm developing a console C++ application with Visual Studio on Windows XP that must be at the highest priority possible for the scheduler.
int main()
{
while ( somecondition )
{
...
0
votes
0answers
178 views
Change the Process priority of a device driver
I have a specific device driver which is used to do Motion Control over the parallel port on my machine.
I'm told that the issues I'm having are caused by other windows processes taking away it's CPU ...