-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkernel.hpp
23 lines (20 loc) · 850 Bytes
/
kernel.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//////////////////////////////////////////////////////////////////////////
// The MOS Kernel //
// Eplankton (wikechao@gmail.com) //
// https://github.com/Eplankton //
// East China Normal University, Shanghai //
// The Apache License, Version 2.0 //
//////////////////////////////////////////////////////////////////////////
#ifndef _MOS_KERNEL_
#define _MOS_KERNEL_
// MOS Kernel Components
#include "config.h"
#include "kernel/macro.hpp"
#include "kernel/utils.hpp"
#include "kernel/data_type.hpp"
#include "kernel/global.hpp"
#include "kernel/task.hpp"
#include "kernel/sync.hpp"
#include "kernel/scheduler.hpp"
#include "kernel/ipc.hpp"
#endif