1
0
mirror of https://gitlab.os-k.eu/os-k-team/os-k.git synced 2023-08-25 14:03:10 +02:00
os-k/kaleid/include/kalkern.h

53 lines
1.6 KiB
C
Raw Normal View History

2019-01-01 13:09:57 +01:00
//----------------------------------------------------------------------------//
// GNU GPL OS/K //
// //
// Authors: spectral` //
// NeoX //
// //
// Desc: Kaleid Kernel main include file //
//----------------------------------------------------------------------------//
//------------------------------------------//
// Dependencies //
//------------------------------------------//
#ifndef _KALEID_H
#include <kaleid.h>
#endif
2019-01-14 14:31:49 +01:00
//------------------------------------------//
// Start of header //
//------------------------------------------//
#ifndef _KALKERN_H
#define _KALKERN_H
2019-01-01 13:09:57 +01:00
//------------------------------------------//
2019-01-14 14:31:49 +01:00
// Kernel headers //
2019-01-01 13:09:57 +01:00
//------------------------------------------//
2019-01-14 14:31:49 +01:00
#ifndef _KALKERN_BASE_H
#include <kernel/kernbase.h>
#endif
#ifndef _KALKERN_LOCKS_H
#include <kernel/kernlocks.h>
#endif
#ifndef _KALKERN_TERM_H
#include <kernel/kernterm.h>
#endif
2019-01-01 13:09:57 +01:00
2019-01-21 09:53:54 +01:00
// not ready for kernel compilation
#ifndef _KALEID_KERNEL
#ifndef _KALKERN_SCHED_H
#include <kernel/kernsched.h>
#endif
#endif
2019-01-01 13:09:57 +01:00
//------------------------------------------//
2019-01-14 14:31:49 +01:00
// End of header //
2019-01-01 13:09:57 +01:00
//------------------------------------------//
#endif