Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
349bec1f
Commit
349bec1f
authored
12 years ago
by
Oleg Hahm
Browse files
Options
Downloads
Patches
Plain Diff
* added documentation to kernel_intern.h
parent
990b199d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/include/kernel_intern.h
+36
-10
36 additions, 10 deletions
core/include/kernel_intern.h
with
36 additions
and
10 deletions
core/include/kernel_intern.h
+
36
−
10
View file @
349bec1f
...
...
@@ -2,25 +2,51 @@
* @ingroup kernel
* @{
* @file
* @author Freie Universität Berlin, Computer Systems & Telematics
* @author Kaspar Schleiser <kaspar@schleiser.de>
*/
/*
* kernel_intern.h
*
* Created on: 10.02.09
* Author: kaspar
* @author INRIA
* @author Oliver Hahm <oliver.hahm@inria.fr>
*/
#ifndef KERNEL_INTERN_H_
#define KERNEL_INTERN_H_
/**
* @brief Initializes scheduler and creates main and idle task
*/
void
kernel_init
(
void
);
void
board_init_drivers
(
void
);
/**
* @brief Optionally: initializes platform specifics (devices, pin configuration etc.)
*/
void
board_init
(
void
);
/**
* @brief Gets called upon thread creation to set CPU registers
*
* @param[in] task_func First function to call within the thread
* @param[in] stack_start Start address of the stack
* @param[in] stack_size Stack size
*
* @return stack pointer
*/
char
*
thread_stack_init
(
void
*
task_func
,
void
*
stack_start
,
int
stack_size
);
/**
* @brief Removes thread from scheduler and set status to STATUS_STOPPED
*/
void
sched_task_exit
(
void
);
/**
* @brief Prints human readable, ps-like thread information for debugging purposes
*/
void
thread_print_stack
(
void
);
/**
* @brief Calculates stack usage if thread was created using CREATE_STACKTEST
*
* @param[in] stack The thread's stack
*
* @return The current usage (overwritten addresses) of the thread's stack
*/
int
thread_measure_stack_usage
(
char
*
stack
);
/** @} */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment