mirror of
https://github.com/Leonmmcoset/cleonos.git
synced 2026-04-21 18:44:01 +00:00
16 lines
425 B
C
16 lines
425 B
C
#ifndef CLKS_USERLAND_H
|
|
#define CLKS_USERLAND_H
|
|
|
|
#include <clks/types.h>
|
|
|
|
clks_bool clks_userland_init(void);
|
|
void clks_userland_tick(u64 tick);
|
|
clks_bool clks_userland_shell_ready(void);
|
|
clks_bool clks_userland_shell_exec_requested(void);
|
|
clks_bool clks_userland_shell_auto_exec_enabled(void);
|
|
u64 clks_userland_launch_attempts(void);
|
|
u64 clks_userland_launch_success(void);
|
|
u64 clks_userland_launch_failures(void);
|
|
|
|
#endif
|