Tagged Questions
The priority tag has no wiki summary.
16
votes
3answers
6k views
Setting thread priority in Linux with Boost
The Boost Libraries don't seem to have a device for setting a thread's priority. Would this be the best code to use on Linux or is there a better method?
boost::thread myThread( MyFunction() );
...
12
votes
4answers
3k views
PriorityQueue/Heap Update
Does Java have an easy way to reevaluate a heap once the priority of an object in a PriorityQueue has changed? I can't find any sign of it in Javadoc, but there has to be a way to do it somehow, ...
10
votes
1answer
195 views
Is there a way to set a Web Worker to low priority?
I am thinking of using Web Workers to provide some background functionality while a user is browsing my website (that's what Web Workers are for, right?). However, I don't want to take the risk of ...
8
votes
6answers
301 views
.NET: Why *not* change the priority of a ThreadPool (or Task) thread?
There are many places across the web and stackoverflow where one is discouraged from changing the priority of a ThreadPool thread or TPL Task. In particular:
"You have no control over the state ...
8
votes
3answers
1k views
Do Linux JVMs actually implement Thread priorities?
Wrote a quick Java proggy to spawn 10 threads with each priority and calculate pi (4*atan(1) method) with BigDecimals 500,000 times each, join on each thread and report the elapsed time for run ...
6
votes
3answers
154 views
Operation priority in Java. (An object instantiates and runs before the GUI is updated?)
I want the GUI to change the title of a button from "Go" to "Working..." before an object is instantiated and actually does the work. When finished, I want the title of the button to switch back to ...
6
votes
1answer
3k views
Start a java process (using Runtime.exec / ProcessBuilder.start) with low priority?
I'm trying to start an external process via java using the ProcessBuilder class, and that much works. Currently running using the command:
new ProcessBuilder("java", "-jar", jarfile, args);
What I ...
6
votes
4answers
743 views
What is priority inversion?
I've heard the phrase 'priority inversion' in reference to development of operating systems.
What exactly is priority inversion?
What is the problem it's meant to solve, and how does it solve it?
6
votes
2answers
1k views
sending messages over tcp with priority in C#
I am developing a chat protocol in C# and I want several types of messages sent on the same connections, for example, text and application(eg file transfer) messages.
Because applications may easily ...
6
votes
6answers
4k views
Java Threads priority in Linux
I have a multi thread application built on Java and I need to set different priorities to this threads. In windows it works fine, a bigger value (priority) gets more CPU time just like it was ...
5
votes
5answers
599 views
Java Garbage Collection thread priority
I have been asked in an interview the following question:
"What is the default priority of the Garbage Collection thread?"
I know we cannot force a GC or change its priority, though I never heard ...
5
votes
4answers
19k views
What is the 'realtime' setting for, for process priority?
From what I've read in the past, you're encouraged not to change the priority of your windows applications programmatically, and if you do never to realtime. Could anyone clear up what the realtime ...
5
votes
4answers
335 views
Message processing with priorities
In a Java web application I have a recurring message load of type A (e.g., 20,000 every hour). Then I have a second type of messages (type B) that show up occasionally but have a higher priority than ...
4
votes
4answers
298 views
JMS message priority not working on Message
I need to set message priority so that High priority messages are consumed before Low priority messages by Receivers.
First I tried with message.setJMSPriority() method to set the priority but it ...
4
votes
2answers
120 views
Why linux decides that standard signals have higher priority than rt-signals?
If both standard and real-time signals
are pending for a process, POSIX
leaves it unspecified which is
delivered first. Linux, like many
other implementations,
gives priority ...
4
votes
2answers
392 views
A lock-free priority queue in C#
I have been searching lately for information on how to construct a lock-free priority queue in C#. I have yet to even find an implementation in any language, or a decent paper on the matter. I have ...
4
votes
2answers
167 views
What is “urgent data”?
The man page of epoll_ctl() says about EPOLLPRI:
There is urgent data available for
read(2) operations.
How exactly is "urgent data" defined and who decides which data has priority?
4
votes
8answers
363 views
Is it OK for a process to be CPU intensive for a prolonged period of time?
The case:
A scheduled task running on Windows.
The program's job is to extract some information from text documents. It uses a lot of regular expressions to do this. The program is therefore CPU ...
4
votes
4answers
1k views
Erlang: priority receive
Priority receive in Erlang can easily be implemented as follows:
prio() ->
receive
{priority, X} -> X
after 0 ->
receive
X -> X
end
end.
I am reading a ...
3
votes
2answers
79 views
How does cout's << operator work with regard to operator precedence? [closed]
Possible Duplicate:
Unexpected order of evaluation (compiler bug?)
I couldn't predict the output for this program :
#include<iostream>
using namespace std;
int *p(int *a)
{
...
3
votes
1answer
95 views
How do I change the priority of a process?
Can anyone provide a Delphi example of code that changes the priority class of a process?
I need to get the process by name from the Windows XP Task manager and change its priority using delphi ...
3
votes
2answers
116 views
Is there a library for C that provides priority queues?
Is there a library for C that provides priority queues?
I'm interested in open source libraries that are commonly installed on Linux machines, something of the kind of glib, which provides some data ...
3
votes
1answer
73 views
CSS specificity / priority based on order in style sheet?
I had a brief look at the CSS3 Selectors spec but couldn't find anything how to get round this problem. Additionally, I wasn't expecting the result from this to change when you move the CSS ...
3
votes
4answers
139 views
Priority of SQL Query with multiple OR
I have two columns:
name, surname (name, lastname)
In a query, try the full name (ex.: Steve Jobs), then I divide the words into the variable (in php) and do the query:
SELECT * FROM `usuarios` ...
3
votes
2answers
74 views
Setting priority when creating processes with batch file
In my c# program I generate a batch file and run it with cmd.
The batch file in turn creates more processes (I'll call them "child processes").
I wish for the child processes to have the same priority ...
3
votes
2answers
141 views
Reducing priority of MySQL commands/jobs (add an index/other commands)?
We have a moderately large production MySQL database. Periodically, we will run commands, usually via a rails migration, that while running, bog down the database. As a specific example, we might add ...
3
votes
1answer
474 views
Using GetPixel() on Minimized Windows [closed]
Using c++ (NOT VISUAL!). I'm trying to collect image data from a window. It seems I cannot use the getpixel() function when the window is minimized. Is there any way to make it work even when ...
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
1answer
454 views
Running a SQL Server 2008 Sproc at Lower Priority
We have a high volume web application based on ASP.NET 3.5 and SQL 2008 where we hope to maintain high availability levels 24x7 without the need for a maintenance window.
Over time, we have become ...
3
votes
1answer
307 views
Execution Priority in custom Attributes in asp.net mvc
I have two custom attributes in my asp.net mvc(C#) application.
[CustAttribute1()]
[CustAttribute2()]
When i use those attributes to my actions, which will get execute first?
[CustAttribute1()]
...
3
votes
3answers
3k views
CSS class priorities
I have a question about the priority of CSS classes after encountering a problem today. The situation is as follows:
I have an unordered list which has a class associated with it. The LI tags has ...
3
votes
1answer
405 views
Thread pool with dependency support?
Does anyone know of a thread-pool like implementation for .NET that supports the following features:
dependencies between tasks
task priorities
sub-tasks
Basically I'd like to throw a bunch of ...
2
votes
1answer
45 views
Java on Linux: Start a process (using Runtime.exec / ProcessBuilder.start) with low priority
I need to start a CPU-intensive system process under low priority so that it doesn't slow down my server. How can I do this on Linux?
This is similar to this question: Start a java process (using ...
2
votes
1answer
52 views
Priority with activemq
We're currentyly developping an application using JMS and activemq (5.5.1).
We would like to define a higher priority for some messages, which would make them consumed first.
After setting the ...
2
votes
1answer
90 views
nginx 'location' directive matching order?
i'm trying to optimize my 'location' directives and cannot find a good way of determining if a specific location match is even attempted. "echo" inside the location block doesn't help here.
this ...
2
votes
5answers
122 views
Low priority request in PHP or MySQL
I Have a site and a database with 5million rows, it working like a charm, but in every hours I'm running a cleanup cronjob, to put the old data to a 'log' table and delete the old data, but in this ...
2
votes
1answer
38 views
PHP / MySQLI / Pages playing nice with eachother
I have a very old server.
On this server I have several web pages that can take quite a while to compile a data report. These reports are PHP pages through Apache using MySQLi.
When someone is ...
2
votes
0answers
57 views
ToolBar overflow items by priority
i'm currently struggling with a feature we need from the WPF ToolBar control.
While the default implementation from the ToolBar seems to always overflow the right most item, but i need a way to mark ...
2
votes
2answers
124 views
Java - Is there a way in Java to enforce in threads
I am trying to write a thread which runs every 20 seconds. However I would like this thread to have as low a priority as possible since it does something non-critical and should not preempt any other ...
2
votes
1answer
294 views
Niceness and priority processes on linux system
I am looking for a way to modify a process' priority through command line.
I found the builtin (bash) nice and the command renice which allow to modify the niceness of the process, but not the actual ...
2
votes
2answers
136 views
Ada - does pragma Attach_Handler() can attach handler with System.Priority'Last priority?
The next two declarations are equivalent:
protected type prot_Type is
....
pragma Priority(System.Priority'Last);
end;
protected type prot_Type is
....
end;
One way of attaching ...
2
votes
3answers
237 views
Automatically adjusting process priorities under Linux
I'm trying to write a program that automatically sets process priorities based on a configuration file (basically path - priority pairs).
I thought the best solution would be a kernel module that ...
2
votes
3answers
251 views
priority queue problem in python
I have a priority queue class that has only few functions like, if it is empty or not, push and pop an itme into it. But I need to check if a partuclar item is present in the queue or not? how would I ...
2
votes
1answer
316 views
SQL - select first in value set by priority?
I'm fairly inexperienced in SQL and this seems like it must be an easy task, but I'm not sure how to go about it.
Basically I want to select a single row from table A where field "someField" is in a ...
2
votes
1answer
45 views
What to check to see if server has enough free resources?
The windows service I am writing will need to run some processor intensive operations once in a while (sound encoding wav -> mp3) on a machine that takes part in real time voice communication (so I ...
2
votes
1answer
320 views
Priority send and receive
I have a problem that I wonder if it can be efficiently implemented in ERLANG. I have a bunch of nodes communicating with each other using a protocol that adds priority information to messages.
I ...
2
votes
1answer
54 views
.NET Form_load priority
So, the problem is such as this: I have a method that does stuff and updates a progress bar. If I call the method after the form is fully loaded (i.e.: by assigning it to a button on the form) ...
2
votes
3answers
314 views
Priority Queue Wrong Order
I am programming the huffman encoding. This is the beginning of my program:
using namespace std;
//Counting methods
int *CountCharOccurence(string text)
{
int *charOccurrence = new int[127];
...
2
votes
1answer
356 views
Is there a JUnit 4+ test case execution priority toolkit?
Is there a JUnit 4+ test case execution priority toolkit?
In the development teams I work we use JUnit 4+ for basic/unit testing and also for integration testing and system testing.
1) One trait of ...