mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
28 lines
571 B
C
28 lines
571 B
C
/**
|
|
* @ingroup kernel
|
|
* @{
|
|
* @file
|
|
* @author Freie Universität Berlin, Computer Systems & Telematics, FeuerWhere project
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
|
*/
|
|
|
|
/*
|
|
* kernel_intern.h
|
|
*
|
|
* Created on: 10.02.09
|
|
* Author: kaspar
|
|
*/
|
|
|
|
#ifndef KERNEL_INTERN_H_
|
|
#define KERNEL_INTERN_H_
|
|
|
|
void kernel_init(void);
|
|
void board_init_drivers();
|
|
char *thread_stack_init(void *task_func, void *stack_start);
|
|
void sched_task_exit(void);
|
|
void thread_print_stack ();
|
|
int thread_measure_stack_usage(char* stack);
|
|
|
|
/** @} */
|
|
#endif /* KERNEL_INTERN_H_ */
|