I need to run multiple threads on an embedded-linux target.
One of the threads requires a lot of resources so I need it to run in background at a low priority.
There will be times when the higher priority threads will have nothing to do. A typical vala Thread.create
looks like this:
Thread.create<void*> (pProcessor->run, true);
Is there a way to specify the thread priority?