nuttx/sched/sched
2016-06-11 16:42:42 -06:00
..
Make.defs Add library functions to concatenate and move lists. Add scheduler function to merge prioritized function to merge prioritized lists (not yet used). 2016-03-23 08:00:58 -06:00
sched_addblocked.c Scheduler: Replace the boolean 'prioritized' with a uint8_t bit set so that additional attributes of a list can be specified without adding more boolean values. 2016-02-11 08:06:33 -06:00
sched_addprioritized.c Add library functions to concatenate and move lists. Add scheduler function to merge prioritized function to merge prioritized lists (not yet used). 2016-03-23 08:00:58 -06:00
sched_addreadytorun.c SMP: Straighten up some scheduler locking logic -- need to REVISIT 2016-03-22 13:01:47 -06:00
sched_cpuload.c Standardize some naming in code section comments 2016-02-21 18:09:04 -06:00
sched_cpuselect.c Add a CPU affinity set to the TCB if SMP is enable and use this CPU set as a mask for determining which CPUs the thread may run on. Add an affinity field to the attrributes to permit controlling which CPUs a pthread may run on. Implements pthread_att_setaffinity_np() and pthread_attr_getaffinity_np(). 2016-02-19 17:33:35 -06:00
sched_foreach.c nuttx/sched: Replace irqsave() with enter_critical_section(); replace irqrestore() with leave_critical_section() 2016-02-14 08:17:46 -06:00
sched_free.c nuttx/sched: Replace irqsave() with enter_critical_section(); replace irqrestore() with leave_critical_section() 2016-02-14 08:17:46 -06:00
sched_garbage.c Fix some bad conditional compilation and other typos in last commit 2016-02-16 20:11:25 -06:00
sched_getaffinity.c Implement sched_setaffinity() and sched_getaffinity() 2016-02-19 19:18:54 -06:00
sched_getfiles.c sched/: Replace explict references to g_readytorun with indirect references via the this_task() macro 2016-02-06 17:44:41 -06:00
sched_getparam.c Implement sched_setaffinity() and sched_getaffinity() 2016-02-19 19:18:54 -06:00
sched_getscheduler.c Implement sched_setaffinity() and sched_getaffinity() 2016-02-19 19:18:54 -06:00
sched_getsockets.c sched/: Replace explict references to g_readytorun with indirect references via the this_task() macro 2016-02-06 17:44:41 -06:00
sched_getstreams.c sched/: Replace explict references to g_readytorun with indirect references via the this_task() macro 2016-02-06 17:44:41 -06:00
sched_gettcb.c Implement sched_setaffinity() and sched_getaffinity() 2016-02-19 19:18:54 -06:00
sched_lock.c Fix some issues with the initial implementation of sched_mergeprioritized. 2016-03-24 07:52:27 -06:00
sched_lockcount.c sched/: Replace explict references to g_readytorun with indirect references via the this_task() macro 2016-02-06 17:44:41 -06:00
sched_mergepending.c Fix some issues with the initial implementation of sched_mergeprioritized. 2016-03-24 07:52:27 -06:00
sched_mergeprioritized.c Fix some issues with the initial implementation of sched_mergeprioritized. 2016-03-24 07:52:27 -06:00
sched_note.c Fix some compilation issues when certain combinations of debug options are selected. 2016-05-17 12:06:32 -06:00
sched_processtimer.c sched/: Replace explict references to g_readytorun with indirect references via the this_task() macro 2016-02-06 17:44:41 -06:00
sched_releasetcb.c sched/: Fix some spacing issues 2015-10-07 19:59:14 -06:00
sched_removeblocked.c Scheduler: Replace the boolean 'prioritized' with a uint8_t bit set so that additional attributes of a list can be specified without adding more boolean values. 2016-02-11 08:06:33 -06:00
sched_removereadytorun.c SMP: Fix some errors when removing a trask from the assigned task list 2016-03-22 11:08:30 -06:00
sched_reprioritize.c SMP: Fix some non-SMP errors that crept in; fix a recursion problem; re-partition some functionality to improve design and readability 2016-02-16 10:14:33 -06:00
sched_resumescheduler.c sched/: Move location (and form) of context switch instrumentation. 2016-03-21 14:08:31 -06:00
sched_roundrobin.c SMP: Add non-reentrant spinlocks, fix pre-emption controls with SMP, and most of the basic scheduler support for SMP (still missing a few things) 2016-02-12 14:55:31 -06:00
sched_rrgetinterval.c sched/: Replace explict references to g_readytorun with indirect references via the this_task() macro 2016-02-06 17:44:41 -06:00
sched_self.c sched/: Replace explict references to g_readytorun with indirect references via the this_task() macro 2016-02-06 17:44:41 -06:00
sched_setaffinity.c Implement sched_setaffinity() and sched_getaffinity() 2016-02-19 19:18:54 -06:00
sched_setparam.c nuttx/sched: Replace irqsave() with enter_critical_section(); replace irqrestore() with leave_critical_section() 2016-02-14 08:17:46 -06:00
sched_setpriority.c sched: Recent change of ASSERT to DEBUGASSERT causes a crash when debug is diabled because there is a critical function call within the assertion 2016-02-23 10:27:40 -06:00
sched_setscheduler.c nuttx/sched: Replace irqsave() with enter_critical_section(); replace irqrestore() with leave_critical_section() 2016-02-14 08:17:46 -06:00
sched_sporadic.c sched/: Change some *err() message to *info() messages if what was a *dbg() message does not indicate and error condition. 2016-06-11 16:42:42 -06:00
sched_suspendscheduler.c sched/: Move location (and form) of context switch instrumentation. 2016-03-21 14:08:31 -06:00
sched_timerexpiration.c Rename *lldbg to *llerr 2016-06-11 14:55:27 -06:00
sched_unlock.c sched/: Add option to buffer scheduler instrumentation data in memory. 2016-03-17 09:49:43 -06:00
sched_verifytcb.c Implement sched_setaffinity() and sched_getaffinity() 2016-02-19 19:18:54 -06:00
sched_wait.c Implement sched_setaffinity() and sched_getaffinity() 2016-02-19 19:18:54 -06:00
sched_waitid.c Reserver the name 'err' for other purposes 2016-06-11 14:40:07 -06:00
sched_waitpid.c Reserver the name 'err' for other purposes 2016-06-11 14:40:07 -06:00
sched_yield.c sched/: Replace explict references to g_readytorun with indirect references via the this_task() macro 2016-02-06 17:44:41 -06:00
sched.h Fix some issues with the initial implementation of sched_mergeprioritized. 2016-03-24 07:52:27 -06:00