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