blob: 5b6c8719414516cd901603614f9e7042444e4b11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* -------------------------------------------
Copyright (C) 2024, Theater Quality Corp, all rights reserved.
------------------------------------------- */
#pragma once
#include <NewKit/Defines.h>
/// @file Scheduler.h
/// @brief This file takes care of creating processes/threads from a subsystem context.
namespace Kernel
{
class UserSubsystem;
class UserEnvVar;
class UserEnv;
} // namespace Kernel
|