summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/src/UserMgr.cpp
blob: 358a96c25ecb4081a3cb362bbd01e2adf086c147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// SPDX-License-Identifier: Apache-2.0
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/kernel

#include <KernelKit/FileMgr.h>
#include <KernelKit/HeapMgr.h>
#include <KernelKit/KPC.h>
#include <KernelKit/ThreadLocalStorage.h>
#include <KernelKit/UserMgr+User.h>
#include <NeKit/KString.h>
#include <NeKit/KernelPanic.h>
#include <NeKit/Utils.h>

/// @file UserMgr+User.cpp
/// @brief Multi-user support.

namespace Kernel {
namespace Detail {
  struct UserPermissionControl;
  struct UserPermissionElevator;
}  // namespace Detail
}  // namespace Kernel