mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
51 lines
959 B
C
51 lines
959 B
C
/**
|
|
* @ingroup kernel
|
|
* @{
|
|
* @file
|
|
* @author Freie Universität Berlin, Computer Systems & Telematics, FeuerWhere project
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
|
*/
|
|
|
|
#ifndef _SCHEDULER_H
|
|
#define _SCHEDULER_H
|
|
|
|
#include <stddef.h>
|
|
#include <bitarithm.h>
|
|
#include "tcb.h"
|
|
|
|
#define MAXTHREADS 32
|
|
|
|
#ifdef ARCH_32_BIT
|
|
#define SCHED_PRIO_LEVELS 32
|
|
#else
|
|
#define SCHED_PRIO_LEVELS 16
|
|
#endif
|
|
|
|
void sched_init();
|
|
void sched_run();
|
|
|
|
void sched_set_status(tcb *process, unsigned int status);
|
|
|
|
volatile unsigned int sched_context_switch_request;
|
|
|
|
volatile tcb *sched_threads[MAXTHREADS];
|
|
volatile tcb *active_thread;
|
|
|
|
extern volatile int num_tasks;
|
|
volatile int thread_pid;
|
|
|
|
//#define SCHEDSTATISTICS
|
|
#if SCHEDSTATISTICS
|
|
|
|
typedef struct schedstat {
|
|
unsigned int laststart;
|
|
unsigned int schedules;
|
|
unsigned int runtime;
|
|
}schedstat;
|
|
|
|
extern schedstat pidlist[MAXTHREADS];
|
|
#endif
|
|
|
|
/** @} */
|
|
#endif // _SCHEDULER_H
|