Lines Matching +full:master +full:- +full:stats
4 'sched.c' provides an very simplistic multi-threading scheduler.
16 - There are NO primitives for thread synchronization (locking,
19 - Only the GPRs and FPRs context is saved during a thread context
23 - The scheduler is NOT transparent to the user. The user
27 - There are NO priorities, and the scheduling policy is round-robin
30 - There are NO capabilities to collect thread CPU usage, scheduler
31 stats, thread status etc.
33 - The semantics are somewhat based on those of pthreads, but NOT
36 - Only seven threads are allowed. These can be easily increased by
39 - The stack size of each thread is 8KBytes. This can be easily
43 - Only one master/parent thread is allowed, and it cannot be
47 - There NOT enough safety checks as are probably in the other
50 - There is no parent-child relationship between threads. Only one
51 thread may thread_join, preferably the master/parent thread.