Files
exectos/xtoskrnl/includes/ob.hh
Aiken Harris 8d639f7c97
Some checks failed
Builds / ExectOS (amd64, debug) (push) Failing after 36s
Builds / ExectOS (amd64, release) (push) Failing after 34s
Builds / ExectOS (i686, release) (push) Failing after 33s
Builds / ExectOS (i686, debug) (push) Failing after 35s
Move handle table management from executive to object manager
2026-08-06 12:20:19 +02:00

24 lines
533 B
C++

/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/ob.hh
* DESCRIPTION: Object Manager
* DEVELOPERS: Aiken Harris <harraiken91@gmail.com>
*/
#ifndef __XTOSKRNL_OB_HH
#define __XTOSKRNL_OB_HH
#include <xtos.hh>
#include <ob/devmap.hh>
#include <ob/handle.hh>
#include <ob/hndltlb.hh>
#include <ob/lifecycl.hh>
#include <ob/obdir.hh>
#include <ob/obmgr.hh>
#include <ob/security.hh>
#include <ob/typereg.hh>
#endif /* __XTOSKRNL_OB_HH */