aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/kernel.h
blob: 78692e6c127a2d5e75422344cfb356dfff794572 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _KERNEL_H_
#define _KERNEL_H_

extern unsigned int do_shutdown;
extern unsigned int shutdown_reason;
extern struct wait_queue_head shutdown_queue;
extern void do_exit(void) __attribute__((noreturn));
extern void stop_kernel(void);

#endif /* _KERNEL_H_ */