The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
26 views

Android Thread.MIN_PRIORITY

I have some logic in my android app to set all the threads's priority in a thread pool to be Thread.MIN_PRIORITY (which has an integer value 1 according to ...
0
votes
2answers
29 views

Setting a Thread's Priority by knowing its ThreadName

I am developing a rt driver for Win CE and to achieve my purpose I need to be able to change a thread's priority. However problem is that, I do not have the source code special thanks to Microsoft! ...
0
votes
1answer
29 views

Win CE 6.0 ethernet read/write thread priorities

I am using win CE 6.0 and need to edit the priorities of the threads that are responsible from reading and writing from ethernet. However I could not find any piece of code responsible for this ...
3
votes
2answers
63 views

Thread priorities in Lua

I had a look at the Lua book and learned that multi-threading in Lua is cooperative. What I couldn't find is some information about thread priorities.I guess that threads with the same priority run ...
9
votes
5answers
185 views

Java multithreading in CPU load

I have a bit of an issue with an application running multiple Java threads. The application runs a number of working threads that peek continuously at an input queue and if there are messages in the ...
0
votes
3answers
111 views

does Thread priority affect the synchronized block access?

I have a single FileScanner Thread that adds new files in a list and multiple FileParser Threads that get new files and each parses its own files. for synchronization sake, I placed the addition to ...
2
votes
1answer
187 views

is Java preemptive?

I've seen many answers to this question but I'm still not sure. One of them was "Java is preemptive". (The JVM schedules using a preemptive, priority based scheduling algorithm (usually round robin ...
1
vote
1answer
118 views

Can I paralellize tiny sub-10ms tasks? (e.g. matrix inversion)

I have a general question about threads (or fibers) on Windows and Linux, in any programming language: Is it possible to have a "2nd thread standing by" and have it quickly jump into action and help ...
2
votes
1answer
128 views

How does SCHED_FIFO and SCHED_RR interfer with each other?

SCHED_FIFO and SCHED_RR are both meant for real-time uses. I am aware that SCHED_RR can be preempted by time slicing. But say if I have one thread set to SCHED_FIFO, and another set to SCHED_RR, if ...
0
votes
1answer
262 views

In Android app setting current Thread priority to less than 1 causes a force close

I am trying to increase the priority of a thread in my application by putting: Thread.currentThread().setPriority(N); The normal priority of current thread is 5, I can change N to as low as 1, but ...
1
vote
1answer
252 views

Is there a way to assign high priority to a thread or an application in Android?

I wrote an Android app that receives UDP packets (that are being streamed) and plays then right when they are received. The app works fine until I click on another app on the Android cell phone, at ...
2
votes
1answer
174 views

Java / Prioritization of threads

I have an application that starts four threads to listen on incoming packets. Every thread opens a socket on a different port. Normally packets are received only on one port at the time, but in some ...
1
vote
3answers
145 views

Threading: Max priority thread does not always completed first

class A extends Thread { public void run() { for (int i = 1; i < 5; i++) { System.out.println("Thread A Loop NO " + i); } System.out.println("Exit from A"); ...
0
votes
0answers
56 views

Performing multiple works using single task

I want to schedule multiple work items to a single task, i.e. a single task should perform a task one after another. I know about .continuewith() functionality of tasks. My problem has two parts: The ...
2
votes
3answers
329 views

Change thread priority from lowest to highest in .net

I am trying to speed things by having one thread write to a linked list and another thread process the linked list. For some reason if the method that writes to the linked list I make it into a task ...
0
votes
1answer
105 views

Is it advisable to use the Windows API 'SetThreadPriority' within a parallel_for_each loop

I would like to reduce the thread-priority of the threads servicing a parallel_for_each, because under heavy load conditions they consume too much processor time relative to other threads in my ...
3
votes
3answers
278 views

Setting a low thread priority for a heavy load task

First, thanks for all the replays! I want to be more specific - I have a website that shows some current and historical reports. I want to be able to allow users to delete all or some of the history, ...
1
vote
5answers
268 views

Setting nice value of Java program running on linux

I want my Java program to lower it's priority some so it doesn't overwhelm the system. My initial thought was to use Thread.currentThread().setPriority(5) but that appears to be merely its priority ...
1
vote
1answer
128 views

Scheduling Priorities,windows

Based on msdn ,windows os schedule threads based on base prorety and uses as a boost dynamic priorety The system treats all threads with the same priority as equal. The system assigns time ...
0
votes
2answers
152 views

Most portable (among *nix) way to allow a thread lowering its own nice

What's the best way to grant a process/thread the right to lower its own nice value, without running it with full privileges? Solution can be external to the process itself (ulimit or setcap for ...
1
vote
3answers
113 views

is there a way to execute system command with given priority?

I mean this command: system("myprogram.exe"); Is there a way to make it run for example in below-normal priority mode ?
1
vote
3answers
215 views

wait notify in java

class Callme { void call(String msg) { System.out.print("[" + msg); try { Thread.sleep(1000); } catch (InterruptedException e) { ...
1
vote
1answer
359 views

How to give higher priority for a user thread than kernel thread(work_queues)

I am running an application,where certain user threads must not be preempted by kernel .I will explain my setup: OS: Linux 2.6.32 kernel Kernel level: 1.There are many modules which are insmoded into ...
0
votes
1answer
182 views

Why is the thread priority set to maximum in a loop in this java applet tutorial code?

I'm trying to learn some basic java programming for games. I'm following this tutorial here. Their skeleton code for the run method in an applet: public void run () { // lower ThreadPriority ...
5
votes
1answer
382 views

Mutexes and thread priorities with regards to scheduling on POSIX systems

In POSIX systems (linux etc), when multiple threads lock a common mutex - is it the locking order that is always observed, or does thread priority bias threads of higher priority when it comes ...
0
votes
1answer
303 views

NSOperationQueue vs pthread priority

I have this problem: I have a C++ code that use some threads. These thread are pthread type. In my iPhone app I use NSOperationQueue and also some C++ code. The problem is this: the C++ pthread ...
1
vote
2answers
1k views

SCHED_FIFO thread is preempted by SCHED_OTHER thread in Linux

I have written test program to test out SCHED_FIFO. I have learnt that SCHED_FIFO cannot be preempted by SCHED_OTHER threads. But I couldn't explain the results obtained when same program is run ...
5
votes
3answers
296 views

Is there a way to set the priority of the background thread used by a SwingWorker?

In Java is there a way to set the priority for the thread that will be calling the doInBackground() method of a SwingWorker object? In the Thread API there is a setPriority() method. The ...
0
votes
2answers
212 views

I want to give a priority each background thread and excute gradually

This code generates Low memory warning because background 5 thread is almostly loading images in same time. I want to give a priority each thread and make lock & unlock. I would make step by ...
1
vote
3answers
738 views

Can't provoke Priority Inversion in C++

I'm trying to provoke Priority Inversion on a small C++ program for demonstration purposes but I can't: The low priority thread that holds the mutex is not preempted and keeps running on the critical ...
0
votes
1answer
444 views

How to make a process high priority (critical)

I have a win CE application which negotiate with an external serial port. The serial port protocol has some restricted rules. For example: If you receive an ANNOUNCE signal, you should send your ...
1
vote
3answers
135 views

Real Time priority in .Net

I have an application that feeds audio data to a FTDI device via the D2XX interface. It works perfectly while my application has focus, and uses very little CPU (5%). But when I hammer the CPU (by ...
0
votes
1answer
177 views

Nice values vs. static priorites (Linux scheduling)

I'd like to understand the difference between nice values (used for SCHED_OTHER scheduling) and static values (used for SCHED_RR & SCHED_FIFO {1..99} and 0 for SCHED_OTHER).
0
votes
1answer
166 views

CFS Priority Scheduler on Linux

How can I avoid child inheriting the cgroup of parent? In my system I have some cgroup hierarchy, one of the process is running under some particular cgroup and it spawn some process, and the child ...
3
votes
1answer
3k 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 ...
11
votes
7answers
351 views

Sporadic problems in running a multi-threaded Java project in Win7

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 short; I have 1 thread for ...
1
vote
1answer
181 views

Windows 7: poor GUI response in my program while downloading data; is there some way to improve this?

I've written a program that (among other things) downloads multiple large files from a server on the LAN, using TCP. This program runs fine under Linux, MacOS/X, and generally under Windows as well ...
3
votes
2answers
450 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 ...
1
vote
1answer
397 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 ...
6
votes
2answers
198 views

Need to prioritize asynchronous socket reads in C#

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 ...
5
votes
4answers
10k 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 ...
1
vote
2answers
166 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
2answers
1k 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.
3
votes
5answers
3k 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 ...
2
votes
4answers
4k 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
3answers
7k 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
155 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 ...
3
votes
8answers
3k 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(); ...