Tagged Questions
2
votes
3answers
350 views
Need tips on how to prioritize and schedule a bunch of work items
It took me some time, but I've finally managed to write down all the tasks that need to go into Version 1.0 of the software product I'm working on.
The list is almost 1000 items long.
We are a ...
0
votes
1answer
736 views
pthreads with real time priority
I need to manage a pool of threads having different priorities, so I wrote the following thread startup procedure:
static
int startup(thrd_t *thrd, thrd_sync_t *sync, int prio)
{
pthread_attr_t ...