.. |
Make.defs
|
Implement sched_setaffinity() and sched_getaffinity()
|
2016-02-19 19:18:54 -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
|
nuttx/sched: Replace irqsave() with enter_critical_section(); replace irqrestore() with leave_critical_section()
|
2016-02-14 08:17:46 -06:00 |
sched_addreadytorun.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_cpuload.c
|
nuttx/sched: Replace irqsave() with enter_critical_section(); replace irqrestore() with leave_critical_section()
|
2016-02-14 08:17:46 -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
|
Rename cpuset_t to cpu_set_t which is the type used in some non-standard Linux/GNU interfaces. Move definitions of cpu_set_t to include/sys/types.h. Add prototypes for sched_setaffinity(), sched_getaffinity(), pthread_attr_setaffinity_np(), pthread_attr_getaffinity_np(), pthread_setaffinity_np(), and pthread_getaffinity_np(). No implementation is yet in place.
|
2016-02-19 15:57:07 -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
|
nuttx/sched: Replace irqsave() with enter_critical_section(); replace irqrestore() with leave_critical_section()
|
2016-02-14 08:17:46 -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: Add funtions to perform atomic bit set/clear operations; fix two errors in SMP macros
|
2016-02-17 13:20:01 -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
|
Sporadic scheduler: Add logic to collection the partial timer expiration when a sporadic thread is suspended in tickless mode
|
2015-07-26 15:03:47 -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
|
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_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
|
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_suspendscheduler.c
|
Sporadic scheduler: Fix how suspension time is calculated
|
2015-07-27 15:54:19 -06:00 |
sched_timerexpiration.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_unlock.c
|
SMP: Add funtions to perform atomic bit set/clear operations; fix two errors in SMP macros
|
2016-02-17 13:20:01 -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
|
sched/: Replace explict references to g_readytorun with indirect references via the this_task() macro
|
2016-02-06 17:44:41 -06:00 |
sched_waitpid.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_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
|
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 |