mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
Merge pull request #1816 from Kijewski/runqueues-name-fixup
core: make sched_runqueues static
This commit is contained in:
commit
1667506948
@ -152,11 +152,6 @@ extern volatile int sched_num_threads;
|
|||||||
*/
|
*/
|
||||||
extern volatile kernel_pid_t sched_active_pid;
|
extern volatile kernel_pid_t sched_active_pid;
|
||||||
|
|
||||||
/**
|
|
||||||
* List of runqueues per priority level
|
|
||||||
*/
|
|
||||||
extern clist_node_t *runqueues[SCHED_PRIO_LEVELS];
|
|
||||||
|
|
||||||
#if SCHEDSTATISTICS
|
#if SCHEDSTATISTICS
|
||||||
/**
|
/**
|
||||||
* Scheduler statistics
|
* Scheduler statistics
|
||||||
|
@ -45,7 +45,7 @@ volatile tcb_t *sched_active_thread;
|
|||||||
|
|
||||||
volatile kernel_pid_t sched_active_pid = KERNEL_PID_UNDEF;
|
volatile kernel_pid_t sched_active_pid = KERNEL_PID_UNDEF;
|
||||||
|
|
||||||
clist_node_t *sched_runqueues[SCHED_PRIO_LEVELS];
|
static clist_node_t *sched_runqueues[SCHED_PRIO_LEVELS];
|
||||||
static uint32_t runqueue_bitcache = 0;
|
static uint32_t runqueue_bitcache = 0;
|
||||||
|
|
||||||
#if SCHEDSTATISTICS
|
#if SCHEDSTATISTICS
|
||||||
|
Loading…
Reference in New Issue
Block a user