PatchworkOS  f20e850
A non-POSIX operating system.
Loading...
Searching...
No Matches
root.h
Go to the documentation of this file.
1#pragma once
2
3/**
4 * @brief Root Service.
5 * @defgroup programs_init_root Root Service
6 * @ingroup programs_init
7 *
8 * As the init process is the root of all processes in the system, it has complete access to all system resources. This
9 * makes it the obvious choice to run the root service.
10 *
11 * @todo Write the docs for the root service.
12 *
13 * @todo Implement proper password authentication.
14 *
15 * @{
16 */
17
18void root_start(void);
19
20/** @} */
void root_start(void)
Definition root.c:44