opuntiaOS - an operating system targeting x86 and ARMv7
1<img src="https://raw.githubusercontent.com/opuntiaOS-Project/opuntiaOS/master/assets/logo/logo_512.png" width="20"> <b> DOCS</b></br></br> 2 3# Prickly Pear Kernel 4 5Prickly Pear Kernel is a unix-like kernel of opuntiaOS. 6 7## Dirs 8 9* [algo](https://github.com/opuntiaOS-Project/opuntiaOS/tree/master/kernel/kernel/algo) contains implementation of algorithms and data structures which are used inside the kernel. 10* [drivers](https://github.com/opuntiaOS-Project/opuntiaOS/tree/master/kernel/kernel/drivers) contains implementation of drivers for supported platforms. 11* [fs](https://github.com/opuntiaOS-Project/opuntiaOS/tree/master/kernel/kernel/fs) contains implementation of VFS and file systems which are supported. 12* [io](https://github.com/opuntiaOS-Project/opuntiaOS/tree/master/kernel/kernel/io) contains implementation of communication parts. 13* [libkern](https://github.com/opuntiaOS-Project/opuntiaOS/tree/master/kernel/kernel/libkern) is a support library for kernel. 14* [mem](https://github.com/opuntiaOS-Project/opuntiaOS/tree/master/kernel/kernel/mem) contains implementation of memory managers (both virtual and physical). 15* [platform](https://github.com/opuntiaOS-Project/opuntiaOS/tree/master/kernel/kernel/platform) contains platform specific code. 16* [syscalls](https://github.com/opuntiaOS-Project/opuntiaOS/tree/master/kernel/kernel/syscalls) contains implementation of syscalls. 17* [tasking](https://github.com/opuntiaOS-Project/opuntiaOS/tree/master/kernel/kernel/tasking) contains implementation of tasking-control mechanisms. 18* [time](https://github.com/opuntiaOS-Project/opuntiaOS/tree/master/kernel/kernel/time) contains implementation of a time manager.